initial commit

master
missytake 2021-06-08 13:55:05 +02:00
commit d712b8624b
2 changed files with 19 additions and 0 deletions

11
functions.php Normal file
View File

@ -0,0 +1,11 @@
<?php
function mychildtheme_enqueue_styles() {
// does 'parent-style' need to be 'understrap'?
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
// enqueue parent/css directory as well? I hope this works
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/css/' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css',
array('parent-style');
}
add_action( 'wp_enqueue_scripts', 'mychildtheme_enqueue_styles' );
?>

8
style.css Normal file
View File

@ -0,0 +1,8 @@
/*
Theme Name: Sand im Getriebe Child Theme
Description: The custom theme Sand im Getriebe Child Theme using the parent theme Understrap.
Author: nami@systemli.org
Author URI: lefherz.net
Template: understrap
Version: 1
*/