setup new freifunktheme (derived from FoundatioPress). Basic typography/styles

This commit is contained in:
Ulf Treger 2018-10-30 13:16:00 +01:00
commit d0bfff9ff2
317 changed files with 29524 additions and 29293 deletions

View file

@ -1,20 +0,0 @@
<?php
/**
* Customize the output of menus for Foundation top bar
*
* @package FoundationPress
* @since FoundationPress 1.0.0
*/
/**
* Big thanks to Brett Mason (https://github.com/brettsmason) for the awesome walker
*/
if ( ! class_exists( 'Foundationpress_Top_Bar_Walker' ) ) :
class Foundationpress_Top_Bar_Walker extends Walker_Nav_Menu {
function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat( "\t", $depth );
$output .= "\n$indent<ul class=\"dropdown menu vertical\" data-toggle>\n";
}
}
endif;