Underscores review.
-
-
Save davilera/cea92c23690f8c7862789e02379a6dd0 to your computer and use it in GitHub Desktop.
This file contains 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
/*! | |
Theme Name: nelio-software | |
Theme URI: http://underscores.me/ | |
Author: Underscores.me | |
Author URI: http://underscores.me/ | |
Description: Description | |
Version: 1.0.0 | |
License: GNU General Public License v2 or later | |
License URI: LICENSE | |
Text Domain: nelio-software | |
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready | |
This theme, like WordPress, is licensed under the GPL. | |
Use it to make something cool, have fun, and share what you've learned with others. | |
nelio-software is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc. | |
Underscores is distributed under the terms of the GNU GPL v2 or later. | |
Normalizing styles have been helped along thanks to the fine work of | |
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/ | |
*/ |
This file contains 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 | |
/** | |
* The template for displaying all single posts | |
* | |
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post | |
* | |
* @package nelio-software | |
*/ | |
get_header(); | |
?> | |
<div id="primary" class="content-area"> | |
<main id="main" class="site-main"> | |
<?php | |
while ( have_posts() ) : | |
the_post(); | |
get_template_part( 'template-parts/content', get_post_type() ); | |
the_post_navigation(); | |
// If comments are open or we have at least one comment, load up the comment template. | |
if ( comments_open() || get_comments_number() ) : | |
comments_template(); | |
endif; | |
endwhile; // End of the loop. | |
?> | |
</main><!-- #main --> | |
</div><!-- #primary --> | |
<?php | |
get_sidebar(); | |
get_footer(); |
This file contains 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 | |
/** | |
* The header for our theme | |
* | |
* This is the template that displays all of the <head> section and everything up until <div id="content"> | |
* | |
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials | |
* | |
* @package nelio-software | |
*/ | |
?> | |
<!doctype html> | |
<html <?php language_attributes(); ?>> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="profile" href="https://gmpg.org/xfn/11"> | |
<?php wp_head(); ?> | |
</head> | |
<body <?php body_class(); ?>> | |
<div id="page" class="site"> | |
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'nelio-software' ); ?></a> | |
<header id="masthead" class="site-header"> | |
<div class="site-branding"> | |
<?php | |
the_custom_logo(); | |
if ( is_front_page() && is_home() ) : | |
?> | |
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> | |
<?php | |
else : | |
?> | |
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p> | |
<?php | |
endif; | |
$nelio_software_description = get_bloginfo( 'description', 'display' ); | |
if ( $nelio_software_description || is_customize_preview() ) : | |
?> | |
<p class="site-description"><?php echo $nelio_software_description; /* WPCS: xss ok. */ ?></p> | |
<?php endif; ?> | |
</div><!-- .site-branding --> | |
<nav id="site-navigation" class="main-navigation"> | |
<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Primary Menu', 'nelio-software' ); ?></button> | |
<?php | |
wp_nav_menu( array( | |
'theme_location' => 'menu-1', | |
'menu_id' => 'primary-menu', | |
) ); | |
?> | |
</nav><!-- #site-navigation --> | |
</header><!-- #masthead --> | |
<div id="content" class="site-content"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment