Launch 0.9.0

This commit is contained in:
Jeremy Thomas 2020-06-07 14:15:06 +01:00
parent fe677734f5
commit 4009df6363
8 changed files with 9 additions and 15 deletions

View File

@ -9,8 +9,3 @@ markdown: kramdown
permalink: pretty
url: https://bulma.io
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

View File

@ -2,11 +2,11 @@
"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.",
"documentation": "/documentation",
"download": "https://github.com/jgthms/bulma/releases/download/0.8.2/bulma-0.8.2.zip",
"release_notes": "https://github.com/jgthms/bulma/releases/tag/0.8.2",
"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.9.0",
"github": "https://github.com/jgthms/bulma",
"twitter": "https://twitter.com/jgthms",
"version": "0.8.2",
"version": "0.9.0",
"book_url": "https://bleedingedgepress.com/creating-interfaces-bulma/",
"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",

View File

@ -13,10 +13,9 @@
{% assign thingy = link_id[0] %}
{% assign link = site.data.links.by_id[thingy] %}
{% endif %}
{% assign link_url = site.url | append: link.path %}
{%
include elements/link.html
url=link_url
path=link.path
color=link.color
icon_brand=link.icon_brand
icon_regular=link.icon_regular

View File

@ -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 %}
<p class="bd-link-surtitle">
{{ include.surtitle }}

View File

@ -2,7 +2,7 @@
<div class="container">
<div class="bd-notice-body">
<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>
<a target="_blank" href="{{ site.data.meta.release_notes }}">Release notes</a>

View File

@ -7,6 +7,7 @@
<body
class="layout-{{ page.layout }}{% if page.doc-tab %} page-{{ page.doc-tab}}{% endif %}"
>
{% include global/notice.html %}
{% include global/deprecated.html %}
{{ content }}
{% include global/footer.html %}

View File

@ -42,7 +42,7 @@ breadcrumb:
{% assign more = post.introduction | markdownify | strip_html %}
{%
include elements/link.html
url=post.url
path=post.url
color=post.color
icon_brand=post.icon_brand
icon_regular=post.icon_regular

View File

@ -33,10 +33,9 @@ breadcrumb:
<div class="bd-links">
{% for link_id in site.data.links.more %}
{% assign link = site.data.links.by_id[link_id] %}
{% assign link_url = site.url | append: link.path %}
{%
include elements/link.html
url=link_url
path=link.path
color=link.color
icon_brand=link.icon_brand
icon_regular=link.icon_regular