-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0858fa
commit ce2617b
Showing
10 changed files
with
121 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
resources: | ||
- title: Flyer / Poster | ||
author: Zughy | ||
img: flyer.png | ||
para: A flyer to promote Minetest. | ||
url: https://gitlab.com/marco_a/minetest-flyer-poster | ||
|
||
- title: Education Leaflet | ||
author: Lemente and Thomate | ||
img: edu_leaflet.png | ||
fit: cover | ||
para: A leaflet to promote Minetest in Education. | ||
url: https://gitlab.com/rubenwardy/fosdem24/-/tree/main/edu_leaflet?ref_type=heads | ||
|
||
- title: Roller banner | ||
author: Thomate and Lemente | ||
img: roller_banner.jpg | ||
fit: cover | ||
para: A rollup banner to use at conferences | ||
url: https://gitlab.com/rubenwardy/fosdem24/-/tree/main/rollup_banner?ref_type=heads | ||
|
||
- title: Stickers | ||
author: erlehmann and Lemente | ||
img: sticker.png | ||
para: A Minetest sticker. | ||
url: https://gitlab.com/rubenwardy/fosdem24/-/tree/main/stickers?ref_type=heads | ||
|
||
- title: Presentation Flipbook | ||
author: rubenwardy | ||
img: showcase.png | ||
para: A showcase of the content Minetest has to offer. | ||
url: https://gitlab.com/rubenwardy/fosdem24/-/tree/main/flipbook?ref_type=heads |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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> |