Skip to content

Commit

Permalink
Import FFS themImport FFS themee
Browse files Browse the repository at this point in the history
  • Loading branch information
steinhobelgruen committed Nov 26, 2014
1 parent 3f99f8e commit f5e365f
Show file tree
Hide file tree
Showing 37 changed files with 3,324 additions and 12 deletions.
13 changes: 1 addition & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,2 @@
*~
*.log
.htaccess
sitemap.xml
sitemap.xml.gz
wp-config.php
wp-content/advanced-cache.php
wp-content/backup-db/
wp-content/backups/
wp-content/blogs.dir/
wp-content/cache/
wp-content/upgrade/
wp-content/uploads/
wp-content/wp-cache-config.php
Binary file added fonts/Ubuntu-B.woff
Binary file not shown.
Binary file added fonts/Ubuntu-BI.woff
Binary file not shown.
Binary file added fonts/Ubuntu-C.woff
Binary file not shown.
Binary file added fonts/Ubuntu-L.woff
Binary file not shown.
Binary file added fonts/Ubuntu-LI.woff
Binary file not shown.
Binary file added fonts/Ubuntu-M.woff
Binary file not shown.
Binary file added fonts/Ubuntu-MI.woff
Binary file not shown.
Binary file added fonts/Ubuntu-R.woff
Binary file not shown.
Binary file added fonts/Ubuntu-RI.woff
Binary file not shown.
Binary file added fonts/UbuntuMono-B.woff
Binary file not shown.
Binary file added fonts/UbuntuMono-BI.woff
Binary file not shown.
Binary file added fonts/UbuntuMono-R.woff
Binary file not shown.
Binary file added fonts/UbuntuMono-RI.woff
Binary file not shown.
Binary file added fonts/vollkorn-bold-webfont.woff
Binary file not shown.
Binary file added fonts/vollkorn-bolditalic-webfont.woff
Binary file not shown.
Binary file added fonts/vollkorn-italic-webfont.woff
Binary file not shown.
Binary file added fonts/vollkorn-medium-webfont.woff
Binary file not shown.
Binary file added fonts/vollkorn-mediumitalic-webfont.woff
Binary file not shown.
Binary file added fonts/vollkorn-regular-webfont.woff
Binary file not shown.
Binary file added fonts/vollkorn-semibold-webfont.woff
Binary file not shown.
Binary file added fonts/vollkorn-semibolditalic-webfont.woff
Binary file not shown.
9 changes: 9 additions & 0 deletions functions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

function deregister_gfonts_ffs() {
wp_deregister_style('twentythirteen-fonts');
}

add_action('wp_enqueue_scripts','deregister_gfonts_ffs',100);

?>
32 changes: 32 additions & 0 deletions headerless.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php
/**
* Template Name: No Headline
*/

get_header(); ?>

<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">

<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
</div><!-- .entry-content -->

<footer class="entry-meta">
<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post -->

<?php comments_template(); ?>
<?php endwhile; ?>

</div><!-- #content -->
</div><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>
Binary file added images/dotted-line-2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/dotted-line-light-2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/dotted-line-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/dotted-line.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/headers/circle-thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/headers/circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/headers/diamond-thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/headers/diamond.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/headers/star-thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/headers/star.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/search-icon-2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/search-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f5e365f

Please sign in to comment.