Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ai
noblogs-wp
Commits
b8bfc5d6
Commit
b8bfc5d6
authored
Sep 26, 2019
by
agata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tema twentynineteen revisionato
parent
9f34f6bf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
86 additions
and
0 deletions
+86
-0
wp-content/themes/twentynineteen-child/footer.php
wp-content/themes/twentynineteen-child/footer.php
+55
-0
wp-content/themes/twentynineteen-child/functions.php
wp-content/themes/twentynineteen-child/functions.php
+18
-0
wp-content/themes/twentynineteen-child/screenshot.png
wp-content/themes/twentynineteen-child/screenshot.png
+0
-0
wp-content/themes/twentynineteen-child/style.css
wp-content/themes/twentynineteen-child/style.css
+13
-0
No files found.
wp-content/themes/twentynineteen-child/footer.php
0 → 100644
View file @
b8bfc5d6
<?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>
wp-content/themes/twentynineteen-child/functions.php
0 → 100644
View file @
b8bfc5d6
<?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'
)
);
}
wp-content/themes/twentynineteen-child/screenshot.png
0 → 100644
View file @
b8bfc5d6
174 KB
wp-content/themes/twentynineteen-child/style.css
0 → 100644
View file @
b8bfc5d6
@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
*/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment