Upload files

This commit is contained in:
ruthmaude 2017-02-11 10:35:20 -05:00 committed by GitHub
parent 0d7237253f
commit 092b9ed287
2 changed files with 18 additions and 0 deletions

5
functions.php Normal file
View File

@ -0,0 +1,5 @@
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}

13
style.css Normal file
View File

@ -0,0 +1,13 @@
/*
Theme Name: Your Theme Name
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Template: twentyseventeen
Description: Child theme for Twenty Seventeen.
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
Text Domain: twentyseventeen-child
*/