mirror of
https://github.com/jgthms/bulma.git
synced 2025-01-09 15:44:25 +00:00
Add backers page
This commit is contained in:
parent
923bb9f5e0
commit
8282af725e
42
docs/_data/backers.json
Normal file
42
docs/_data/backers.json
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{
|
||||||
|
"30": [
|
||||||
|
{
|
||||||
|
"FirstName": "Adrian",
|
||||||
|
"LastName": "Ocneanu",
|
||||||
|
"Pledge": 30,
|
||||||
|
"Twitter": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"10": [
|
||||||
|
{
|
||||||
|
"FirstName": "Niklas",
|
||||||
|
"LastName": "",
|
||||||
|
"Pledge": 10,
|
||||||
|
"Twitter": "paradoxxger"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"FirstName": "dansup",
|
||||||
|
"LastName": "",
|
||||||
|
"Pledge": 10,
|
||||||
|
"Twitter": "dsup"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"FirstName": "Wikiki",
|
||||||
|
"LastName": "",
|
||||||
|
"Pledge": 10,
|
||||||
|
"Twitter": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"FirstName": "Peter",
|
||||||
|
"LastName": "Ryszkiewicz",
|
||||||
|
"Pledge": 10,
|
||||||
|
"Twitter": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"FirstName": "Michael",
|
||||||
|
"LastName": "Schinis",
|
||||||
|
"Pledge": 10,
|
||||||
|
"Twitter": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
8
docs/_includes/elements/patreon-item.html
Normal file
8
docs/_includes/elements/patreon-item.html
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<li>
|
||||||
|
{{ backer.FirstName }} {{ backer.LastName }}
|
||||||
|
{% if backer.Twitter != "" %}
|
||||||
|
<a href="https://twitter.com/{{ backer.Twitter }}" target="_blank">
|
||||||
|
@{{ backer.Twitter }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
</li>
|
@ -117,6 +117,14 @@
|
|||||||
More
|
More
|
||||||
</div>
|
</div>
|
||||||
<div id="moreDropdown" class="navbar-dropdown {% if include.boxed %}is-boxed{% endif %}">
|
<div id="moreDropdown" class="navbar-dropdown {% if include.boxed %}is-boxed{% endif %}">
|
||||||
|
<a class="navbar-item {% if page.route == 'backers' %}is-active{% endif %}" href="{{ site.url }}/backers/">
|
||||||
|
<p>
|
||||||
|
<strong>Patreon backers</strong>
|
||||||
|
<br>
|
||||||
|
<small>Everyone who is supporting Bulma</small>
|
||||||
|
</p>
|
||||||
|
</a>
|
||||||
|
<hr class="navbar-divider">
|
||||||
<a class="navbar-item {% if page.route == 'bulma-start' %}is-active{% endif %}" href="{{ site.url }}/bulma-start/">
|
<a class="navbar-item {% if page.route == 'bulma-start' %}is-active{% endif %}" href="{{ site.url }}/bulma-start/">
|
||||||
<p>
|
<p>
|
||||||
<strong>Bulma start</strong>
|
<strong>Bulma start</strong>
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
img
|
img
|
||||||
max-height: 100%
|
max-height: 100%
|
||||||
|
|
||||||
|
.hero.bd-is-patreon
|
||||||
|
background-color: $patreon
|
||||||
|
|
||||||
+from(480px)
|
+from(480px)
|
||||||
.bd-patreon-text
|
.bd-patreon-text
|
||||||
margin-right: 1rem
|
margin-right: 1rem
|
||||||
|
52
docs/backers.html
Normal file
52
docs/backers.html
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
title: Backers via Patreon
|
||||||
|
layout: default
|
||||||
|
route: backers
|
||||||
|
---
|
||||||
|
|
||||||
|
{% include navbar.html id="BackersNavbar" %}
|
||||||
|
|
||||||
|
<section class="hero is-primary bd-is-patreon">
|
||||||
|
<div class="hero-body">
|
||||||
|
<div class="container">
|
||||||
|
<div class="columns is-vcentered">
|
||||||
|
<div class="column">
|
||||||
|
<h1 class="title">
|
||||||
|
Backers via Patreon
|
||||||
|
</h1>
|
||||||
|
<p class="subtitle">
|
||||||
|
Everyone who is supporting Bulma
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column is-narrow">
|
||||||
|
{% include carbon.html %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="section">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="title is-5">
|
||||||
|
Generous backers via Patreon ($30+)
|
||||||
|
</h2>
|
||||||
|
<div class="content">
|
||||||
|
<ul>
|
||||||
|
{% for backer in site.data.backers.30 reversed %}
|
||||||
|
{% include elements/patreon-item.html %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 class="title is-5">
|
||||||
|
Backers via Patreon ($10+)
|
||||||
|
</h2>
|
||||||
|
<div class="content">
|
||||||
|
<ul>
|
||||||
|
{% for backer in site.data.backers.10 reversed %}
|
||||||
|
{% include elements/patreon-item.html %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
@ -13289,6 +13289,10 @@ html.route-index .hero.is-primary a.column:hover .title strong {
|
|||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hero.bd-is-patreon {
|
||||||
|
background-color: #f96854;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 480px) {
|
@media screen and (min-width: 480px) {
|
||||||
.bd-patreon-text {
|
.bd-patreon-text {
|
||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
|
Loading…
Reference in New Issue
Block a user