-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1748dd
commit 4fcc912
Showing
8 changed files
with
82 additions
and
16 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,5 +1,22 @@ | ||
# Playground for Beaver Themer Changelog | ||
|
||
## 1.0.1 | ||
|
||
* **Fix**: CSS font family values | ||
* **Fix**: Making the theme work with Beaver Builder pages/posts | ||
|
||
### Files changed: | ||
|
||
changelog.md | ||
index.php | ||
style.css | ||
assets/css/base.css | ||
assets/sass/base.scss | ||
assets/sass/parts/_typography.scss | ||
includes/class-setup-plugin.php | ||
templates/parts/content/content.php | ||
|
||
|
||
## 1.0.0 | ||
|
||
* Initial release. |
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,17 @@ | ||
<?php defined( 'ABSPATH' ) || exit; | ||
/** | ||
* Page builder content. | ||
* | ||
* @package Playground for Beaver Themer | ||
* @copyright WebMan Design, Oliver Juhas | ||
* | ||
* @since 1.0.1 | ||
* @version 1.0.1 | ||
*/ | ||
|
||
while ( have_posts() ) : | ||
the_post(); | ||
|
||
the_content(); | ||
|
||
endwhile; |