This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@inherits umbraco.MacroEngines.DynamicNodeContext | |
@{ | |
if ( String.IsNullOrEmpty(@Parameter.mediaFolder) ) { | |
<p>A folder has not been selected</p> | |
} | |
var folder = Parameter.mediaFolder; | |
var media = Model.MediaById(folder); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@* Embedded Twitter Feed | |
* --------------------- | |
* Create a widget from Twitter.com FIRST - https://twitter.com/settings/widgets | |
* Embedded Timeline API - https://dev.twitter.com/docs/embedded-timelines | |
* All of these settings are for the local end. User & Search information | |
* Should be setup on the actually widget creation page. | |
* | |
* | |
*@ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function themename_customize_register($wp_customize){ | |
$wp_customize->add_section('themename_color_scheme', array( | |
'title' => __('Color Scheme', 'themename'), | |
'priority' => 120, | |
)); | |
// ============================= |
NewerOlder