Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to 2.1.3 #72

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node_modules/*
.idea/*
.jscsrc
.jshintignore
.jshintrc
.travis.yml
Gruntfile.js
phpcs.ruleset.xml
.standard.json
dazzling.zip
package-lock.json
Empty file modified 404.php
100755 → 100644
Empty file.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,17 @@ Dazzling theme uses:
* [Bootstrap](http://getbootstrap.com/) licensed under [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE)
* [WP-Bootstrap-NavWalker](https://github.com/twittem/wp-bootstrap-navwalker) licensed under the GPLv2 license
* [FlexSlider](https://github.com/woothemes/FlexSlider) by WooThemes licensed under the GPLv2 license
* [respond.js](https://github.com/scottjehl/Respond) by Scott Jehl licensed under the MIT license
* [html5shiv.js](https://github.com/aFarkas/html5shiv) by Alexander Farkas licensed under a dual license system (MIT or GPL version 2)

#Changelog#

####2.1.3 - 11.12.2016####

* Added wp_body_open
* Added License & Copyright
* Added unminified Scripts and styles

####2.1.0 - 30.06.2016####

* Added TGMPA & made Kiwi a recommended plugin
Expand Down
Empty file modified archive.php
100755 → 100644
Empty file.
Empty file modified comments.php
100755 → 100644
Empty file.
Empty file modified content-none.php
100755 → 100644
Empty file.
Empty file modified content-page.php
100755 → 100644
Empty file.
Empty file modified content-single.php
100755 → 100644
Empty file.
Empty file modified content.php
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion footer.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<?php dazzling_footer_info(); ?>
</div>
</div><!-- .site-info -->
<div class="scroll-to-top"><i class="fa fa-angle-up"></i></div><!-- .scroll-to-top -->
<button class="scroll-to-top"><i class="fa fa-angle-up"></i></button><!-- .scroll-to-top -->
</footer><!-- #colophon -->
</div>
</div><!-- #page -->
Expand Down
7 changes: 7 additions & 0 deletions header.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
</head>

<body <?php body_class(); ?>>
<?php
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
} else {
do_action( 'wp_body_open' );
}
?>
<div id="page" class="hfeed site">

<nav class="navbar navbar-default" role="navigation">
Expand Down
Loading