diff --git a/wp-content/themes/twentynineteen-child/footer.php b/wp-content/themes/twentynineteen-child/footer.php new file mode 100644 index 0000000000000000000000000000000000000000..d16e4957544c9f5f044146d532e874fc0bd03f15 --- /dev/null +++ b/wp-content/themes/twentynineteen-child/footer.php @@ -0,0 +1,55 @@ +<?php +/** + * The template for displaying the footer + * + * Contains the closing of the #content div and all content after. + * + * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials + * + * @package WordPress + * @subpackage Twenty_Nineteen + * @since 1.0.0 + */ + +?> + + </div><!-- #content --> + + <footer id="colophon" class="site-footer"> + <?php get_template_part( 'template-parts/footer/footer', 'widgets' ); ?> + <div class="site-info"> + <?php $blog_info = get_bloginfo( 'name' ); ?> + <?php if ( ! empty( $blog_info ) ) : ?> + <a class="site-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>, + <?php endif; ?> + + <strong>Proudly powered by <a href="https://www.autistici.org">R*</a></strong> + + + <?php + if ( function_exists( 'the_privacy_policy_link' ) ) { + the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); + } + ?> + <?php if ( has_nav_menu( 'footer' ) ) : ?> + <nav class="footer-navigation" aria-label="<?php esc_attr_e( 'Footer Menu', 'twentynineteen' ); ?>"> + <?php + wp_nav_menu( + array( + 'theme_location' => 'footer', + 'menu_class' => 'footer-menu', + 'depth' => 1, + ) + ); + ?> + </nav><!-- .footer-navigation --> + <?php endif; ?> + </div><!-- .site-info --> + </footer><!-- #colophon --> + +</div><!-- #page --> + +<?php wp_footer(); ?> + +</body> +</html> diff --git a/wp-content/themes/twentynineteen-child/functions.php b/wp-content/themes/twentynineteen-child/functions.php new file mode 100644 index 0000000000000000000000000000000000000000..773231470aa71002b0e3a9118b6759f08116bf1a --- /dev/null +++ b/wp-content/themes/twentynineteen-child/functions.php @@ -0,0 +1,18 @@ +<?php +/** + * this add our style.css - questo aggiunge il nostro foglio di stile + */ +add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); +function my_theme_enqueue_styles() { + + $parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme. + + wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); + wp_enqueue_style( 'child-style', + get_stylesheet_directory_uri() . '/style.css', + array( $parent_style ), + wp_get_theme()->get('Version') + ); +} + + diff --git a/wp-content/themes/twentynineteen-child/screenshot.png b/wp-content/themes/twentynineteen-child/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..d1754f5daa4906e56cb087b961c7e831e4018de3 Binary files /dev/null and b/wp-content/themes/twentynineteen-child/screenshot.png differ diff --git a/wp-content/themes/twentynineteen-child/style.css b/wp-content/themes/twentynineteen-child/style.css new file mode 100644 index 0000000000000000000000000000000000000000..ffd7f69fc674e8d07ba51e4ec2bf0fdbe119a7b4 --- /dev/null +++ b/wp-content/themes/twentynineteen-child/style.css @@ -0,0 +1,13 @@ +@charset "UTF-8"; +/* + Theme Name: Twenty Nineteen - noblogs patches + Theme URI: https://wordpress.org/themes/twentynineteen/ + Description: Twenty Nineteen Child Theme - Urchin revision + Author: Autistici Inventati + Author URI: http://noblogs.org + Template: twentynineteen + License: GNU General Public License v2 or later + License URI: http://www.gnu.org/licenses/gpl-2.0.html + Text Domain: twentynineteenchild +*/ +