Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added files for upload
  • Loading branch information
ore02001 committed Jun 16, 2020
0 parents commit aca34db
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
28 changes: 28 additions & 0 deletions functions.php
@@ -0,0 +1,28 @@
<?php

/* Lets add the parent theme */

add_action('wp_enqueue_style', 'optimus_load_parent_style');

if(function_exists('optimus_load_parent_style')){

function optimus_load_parent_style(){

wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css');

}

}

/* Lets add the child theme */

if(function_exists('optimus_load_child_style')){

function optimus_load_child_style(){

wp_enqueue_style('child-style', get_stylesheet_uri() . '/style.css');

}

}

9 changes: 9 additions & 0 deletions style.css
@@ -0,0 +1,9 @@
/*
* Theme Name: Optimus Child Theme
* Theme URI: https://www.engr.uconn.edu/
* Description: A Sherman child theme
* Author URI: O. Echevarria
* Template: cornerstone
* Version: 1.0
*
*/

0 comments on commit aca34db

Please sign in to comment.