-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from wpkitpro/develop
Develop
- Loading branch information
Showing
19 changed files
with
94 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
/** | ||
* Editor styling | ||
*/ | ||
/** | ||
* DO NOT CHANGE THIS FILE! | ||
* To override any of the settings in this section, add your styling code in the custom directory. | ||
* Loading first in the style.scss and style-editor.scss | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
/** | ||
* Footer styles | ||
*/ | ||
.site-footer { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-between; | ||
padding: 1.875rem 0; /* 30/16 */ | ||
} | ||
|
||
.footer-copyright { | ||
text-align: center; | ||
padding: 1.875rem 0; /* 30/16 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,9 @@ | |
.site-description { | ||
margin: 0; | ||
} | ||
|
||
.site-title { | ||
font-size: 2.5rem; /* 40/16 */ | ||
font-weight: 500; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
/** | ||
* The template for displaying footer. | ||
* | ||
* @package WpKitElementor | ||
*/ | ||
|
||
$theme_name = wp_get_theme()->get( 'Name' ); | ||
$theme_author = wp_get_theme()->get( 'Author' ); | ||
$theme_url = wp_get_theme()->get( 'AuthorURI' ); | ||
|
||
$footer_nav_menu = wp_nav_menu( array( | ||
'theme_location' => 'footer', | ||
'fallback_cb' => false, | ||
'echo' => false, | ||
) ); | ||
?> | ||
<footer id="colophon" class="site-footer"> | ||
|
||
<?php if ( $footer_nav_menu ): ?> | ||
<nav class="site-navigation"> | ||
<?php | ||
// PHPCS - escaped by WordPress with "wp_nav_menu" | ||
echo $footer_nav_menu; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | ||
?> | ||
</nav> | ||
<?php endif; ?> | ||
|
||
<div class="footer-copyright"> | ||
|
||
<div class="credit"> | ||
<?php | ||
/* translators: %1$s: theme name, %2$s link, %3$s theme author */ | ||
echo sprintf( __( '%1$s Theme by <a href="%2$s">%3$s.</a>', | ||
'wp-kit-elementor' ), esc_html( $theme_name ), | ||
esc_url( $theme_url ), | ||
$theme_author | ||
); | ||
?> | ||
</div> | ||
|
||
</div> | ||
|
||
</footer><!-- #colophon --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters