-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpress.html
62 lines (58 loc) · 1.88 KB
/
press.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: Press Kit / Posters
layout: default
---
<h1 class="title main-title">{{ page.title }}</h1>
<section class="section">
<div class="container">
<h2 id="branding" class="title">Branding</h2>
<div class="columns">
<div class="column content">
<h3 id="colors">Colors</h3>
<dl class="is-horizontal">
<dt>Primary</dt>
<dd><span class="tag is-black" style="background-color: #53ac56;">#53ac56</span></dd>
</dl>
</div>
<div class="column content">
<h3 id="logo">Logo</h3>
<ul>
<li>
<a href="https://raw.githubusercontent.com/minetest/minetest/master/misc/minetest.svg">
Color .SVG
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section" style="background-color: #f0f0f0;">
<div class="container">
<h2 id="resources" class="title">Resources</h2>
<div class="columns is-multiline">
{% for point in site.data.press.resources %}
<a class="column is-one-third hover-enlarge" href="{{ point.url }}" rel="nofollow">
<div class="card">
{% assign fit = point.fit | default: 'contain' %}
<div class="card-image">
<figure class="image is-4by3">
<img src="/media/press/{{ point.img }}"
class="{% if fit == 'contain' %}p-4{% endif %}"
style="object-fit: {{ fit }}; background: #333;"
alt="{{ point.img_alt | default: point.title }}">
</figure>
</div>
<div class="card-content">
<h3 class="title is-4">{{ point.title }}</h3>
<h6 class="subtitle is-6">{{ point.author }}</h6>
<p>
{{ point.para }}
</p>
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</section>