-
-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Page without hero and set height of callouts
- Loading branch information
1 parent
f09f2bd
commit 42dcd22
Showing
9 changed files
with
94 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
style: is-light | ||
height: is-medium | ||
items: | ||
- title: Example callout 1 | ||
subtitle: Example subtitle 1 | ||
|
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 |
---|---|---|
|
@@ -2,15 +2,15 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "bulma-clean-theme" | ||
spec.version = "0.5.6" | ||
spec.version = "0.5.7" | ||
spec.authors = ["chrisrhymes"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = "Clean and simple theme using Bulma" | ||
spec.homepage = "https://www.github.com/chrisrhymes/bulma-clean-theme" | ||
spec.license = "MIT" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|_posts|blog|LICENSE|README|package|node_modules|favicon.png)!i) } | ||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|_posts|blog|LICENSE|README|package|node_modules|favicon.png|changelog.txt)!i) } | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 3.8" | ||
spec.add_runtime_dependency "jekyll-feed", "~> 0.11" | ||
|
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,41 @@ | ||
# 0.5.7 | ||
* Add option to hide hero - pull request #15 from risa2000 | ||
* Add ability to override the height of callouts - pull request #14 from agardnerIT | ||
|
||
# 0.5.6 | ||
* Explicitly reference shortcut icon - pull request #13 from johannesegger | ||
|
||
# 0.5.5 | ||
* Fix bug with navbar dropdown in IE and Edge | ||
* Fix bug with layout where <code> elements were too wide | ||
|
||
# 0.5.4 | ||
* Added landing page feature | ||
|
||
# 0.5.3 | ||
* Remove extra </a> - pull request #8 from SumitBando | ||
|
||
# 0.5.2 | ||
* Add head and footer script partials | ||
* Updated Bulma to 0.7.5 | ||
|
||
# 0.5.1 | ||
* Fix headings not showing in post | ||
|
||
# 0.5 | ||
* Add product page layouts | ||
|
||
# 0.4.1 | ||
* Added footer links | ||
|
||
# 0.4 | ||
* Added tabs, syntax highlighting and updated Bulma | ||
|
||
# 0.3 | ||
* Added menubar | ||
|
||
# 0.2 | ||
* Added hero background image, blog page images and Google Analytics | ||
|
||
# 0.1 | ||
* 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: page | ||
title: Page Without Hero | ||
description: This is a page with no hero | ||
hide_hero: true | ||
show_sidebar: false | ||
menubar: example_menu | ||
--- | ||
|
||
# Page Without Hero | ||
|
||
This is a page without a hero. | ||
|
||
To hide the hero, set `hide_hero: true` in the page's frontmatter. | ||
|
||
Hiding the hero means that there will not be a title and subtitle displayed, so it will have to be added to the page content. |