mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Launch 0.9.0
This commit is contained in:
parent
fe677734f5
commit
4009df6363
@ -9,8 +9,3 @@ markdown: kramdown
|
|||||||
permalink: pretty
|
permalink: pretty
|
||||||
url: https://bulma.io
|
url: https://bulma.io
|
||||||
exclude: ['icons', 'node_modules', 'templates', '.babelrc', 'bulma-docs.sass', 'docker-compose.yml', 'package.json', 'yarn.lock']
|
exclude: ['icons', 'node_modules', 'templates', '.babelrc', 'bulma-docs.sass', 'docker-compose.yml', 'package.json', 'yarn.lock']
|
||||||
|
|
||||||
# Variables
|
|
||||||
|
|
||||||
download: https://github.com/jgthms/bulma/releases/download/0.7.0/bulma-0.7.0.zip
|
|
||||||
version: 0.7.0
|
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
"title": "Bulma: Free, open source, and modern CSS framework based on Flexbox",
|
"title": "Bulma: Free, open source, and modern CSS framework based on Flexbox",
|
||||||
"description": "Bulma is a free, open source CSS framework based on Flexbox and built with Sass. It's 100% responsive, fully modular, and available for free.",
|
"description": "Bulma is a free, open source CSS framework based on Flexbox and built with Sass. It's 100% responsive, fully modular, and available for free.",
|
||||||
"documentation": "/documentation",
|
"documentation": "/documentation",
|
||||||
"download": "https://github.com/jgthms/bulma/releases/download/0.8.2/bulma-0.8.2.zip",
|
"download": "https://github.com/jgthms/bulma/releases/download/0.9.0/bulma-0.9.0.zip",
|
||||||
"release_notes": "https://github.com/jgthms/bulma/releases/tag/0.8.2",
|
"release_notes": "https://github.com/jgthms/bulma/releases/tag/0.9.0",
|
||||||
"github": "https://github.com/jgthms/bulma",
|
"github": "https://github.com/jgthms/bulma",
|
||||||
"twitter": "https://twitter.com/jgthms",
|
"twitter": "https://twitter.com/jgthms",
|
||||||
"version": "0.8.2",
|
"version": "0.9.0",
|
||||||
"book_url": "https://bleedingedgepress.com/creating-interfaces-bulma/",
|
"book_url": "https://bleedingedgepress.com/creating-interfaces-bulma/",
|
||||||
"book_amazon": "https://www.amazon.com/Creating-Interfaces-Bulma-Jeremy-Thomas-ebook/dp/B079M1BJG4/",
|
"book_amazon": "https://www.amazon.com/Creating-Interfaces-Bulma-Jeremy-Thomas-ebook/dp/B079M1BJG4/",
|
||||||
"book_sample": "http://www.bleedingedgepress.com/book_excerpts/01E9D1/creating_interfaces_with_bulma_sample.pdf",
|
"book_sample": "http://www.bleedingedgepress.com/book_excerpts/01E9D1/creating_interfaces_with_bulma_sample.pdf",
|
||||||
|
@ -13,10 +13,9 @@
|
|||||||
{% assign thingy = link_id[0] %}
|
{% assign thingy = link_id[0] %}
|
||||||
{% assign link = site.data.links.by_id[thingy] %}
|
{% assign link = site.data.links.by_id[thingy] %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% assign link_url = site.url | append: link.path %}
|
|
||||||
{%
|
{%
|
||||||
include elements/link.html
|
include elements/link.html
|
||||||
url=link_url
|
path=link.path
|
||||||
color=link.color
|
color=link.color
|
||||||
icon_brand=link.icon_brand
|
icon_brand=link.icon_brand
|
||||||
icon_regular=link.icon_regular
|
icon_regular=link.icon_regular
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<a class="bd-link" href="{{ site.url }}{{ include.url }}">
|
<a class="bd-link" href="{{ site.url }}{{ include.path }}">
|
||||||
{% if include.surtitle %}
|
{% if include.surtitle %}
|
||||||
<p class="bd-link-surtitle">
|
<p class="bd-link-surtitle">
|
||||||
{{ include.surtitle }}
|
{{ include.surtitle }}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="bd-notice-body">
|
<div class="bd-notice-body">
|
||||||
<p>
|
<p>
|
||||||
Bulma <strong>{{ site.data.meta.version }}</strong> is out!
|
Bulma <strong>{{ site.data.meta.version }}</strong> is out! With <strong>RTL support</strong> and <a href="{{ site.url }}/documentation/helpers/spacing-helpers/"><strong>spacing helpers</strong></a>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a target="_blank" href="{{ site.data.meta.release_notes }}">Release notes</a>
|
<a target="_blank" href="{{ site.data.meta.release_notes }}">Release notes</a>
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
<body
|
<body
|
||||||
class="layout-{{ page.layout }}{% if page.doc-tab %} page-{{ page.doc-tab}}{% endif %}"
|
class="layout-{{ page.layout }}{% if page.doc-tab %} page-{{ page.doc-tab}}{% endif %}"
|
||||||
>
|
>
|
||||||
|
{% include global/notice.html %}
|
||||||
{% include global/deprecated.html %}
|
{% include global/deprecated.html %}
|
||||||
{{ content }}
|
{{ content }}
|
||||||
{% include global/footer.html %}
|
{% include global/footer.html %}
|
||||||
|
@ -42,7 +42,7 @@ breadcrumb:
|
|||||||
{% assign more = post.introduction | markdownify | strip_html %}
|
{% assign more = post.introduction | markdownify | strip_html %}
|
||||||
{%
|
{%
|
||||||
include elements/link.html
|
include elements/link.html
|
||||||
url=post.url
|
path=post.url
|
||||||
color=post.color
|
color=post.color
|
||||||
icon_brand=post.icon_brand
|
icon_brand=post.icon_brand
|
||||||
icon_regular=post.icon_regular
|
icon_regular=post.icon_regular
|
||||||
|
@ -33,10 +33,9 @@ breadcrumb:
|
|||||||
<div class="bd-links">
|
<div class="bd-links">
|
||||||
{% for link_id in site.data.links.more %}
|
{% for link_id in site.data.links.more %}
|
||||||
{% assign link = site.data.links.by_id[link_id] %}
|
{% assign link = site.data.links.by_id[link_id] %}
|
||||||
{% assign link_url = site.url | append: link.path %}
|
|
||||||
{%
|
{%
|
||||||
include elements/link.html
|
include elements/link.html
|
||||||
url=link_url
|
path=link.path
|
||||||
color=link.color
|
color=link.color
|
||||||
icon_brand=link.icon_brand
|
icon_brand=link.icon_brand
|
||||||
icon_regular=link.icon_regular
|
icon_regular=link.icon_regular
|
||||||
|
Loading…
Reference in New Issue
Block a user