Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add press page #188

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions _data/press.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
resources:
- title: Leaflet
author: rubenwardy
img: leaflet.png
para: The leaflets used at Freenode Live.
url: https://blog.rubenwardy.com/static/blog/freenode-live/leaflet.pdf

- title: Showcase Folder
author: rubenwardy and Shara
img: showcase.png
para: A highlight of the content Minetest has to offer.
4 changes: 1 addition & 3 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
<footer class="footer">
<div class="container">
<div class="columns is-multiline">

<div class="column is-6 is-3-desktop">
<h5 class="footer-title">Minetest</h5>
<ul class="list-unstyled">
<li><a href="/#features">Features</a></li>
<li><a href="/#gallery">Gallery</a></li>
<li><a href="/downloads/">Downloads</a></li>
<li><a href="https://forum.minetest.net/viewforum.php?f=18">News</a></li>
<li><a href="/credits/">Credits</a></li>
<li><a href="/press/">Press / Media Kit</a></li>
</ul>
</div>

<div class="column is-6 is-3-desktop">
<h5 class="footer-title">Content</h5>
<ul class="list-unstyled">
Expand Down
Binary file added media/press/leaflet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/press/showcase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
87 changes: 87 additions & 0 deletions press.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
---
title: Press Kit
layout: default
---

<section class="section container content">
<h2>Branding</h2>
<div class="columns">
<div class="column">
<h3>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">
<h3>Color Logo</h3>
<ul>
<li><a href="https://raw.githubusercontent.com/minetest/minetest/master/misc/minetest.svg">.SVG</a></li>
</ul>
</div>
<!-- <div class="column">
<h3>White Logo</h3>
<ul>
<li><a href="https://raw.githubusercontent.com/minetest/minetest/master/misc/minetest.svg">.SVG</a></li>
</ul>
</div> -->
</div>
</section>

<section class="section" style="background-color: #f0f0f0;">
<div class="container">
<h2 id="resources" class="title">Resources</h2>
<h6 class="subtitle is-6">Premade promotional resources.</h6>

<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">
<div class="card-image">
<figure class="image is-16by9">
<img src="/media/press/{{ point.img }}" style="object-fit: cover;" alt="screenshot">
</figure>
</div>
<div class="card-content">
<h2 class="title is-4">{{ point.title }}
{% if point.tag %}
<span class="tag is-rounded is-warning">{{ point.tag }}</span>
{% endif %}
{% for lang in point.lang %}
<img class="is-pulled-right" src="/assets/icons/lang-{{ lang }}.png" alt="{{ lang }}">
{% endfor %}
</h2>
<h6 class="subtitle is-6">{{ point.author }}</h6>
<p>
{{ point.para }}
</p>
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</section>

<section class="section container">
<h2 class="title">Descriptions</h2>
<h6 class="subtitle is-6">A collection of useful text to describe the project.</h6>

<div class="content">
<h3>Mission Statement</h3>
<p>
Minetest provides both a game engine, which allows the creation of voxel games using Lua, and
a content distribution platform. Players can connect to servers which provide their own gameplay,
and easily install content through the Minetest client. The goal is to provide an easy to learn and use,
but still powerful system which allows to easily and rapidly create, extend and modify voxel games.
</p>
<p>
<a class="button" href="https://github.com/minetest/minetest/blob/master/doc/direction.md">View development direction document</a>
</p>

<h3>Other</h3>
<p>
Minetest is an voxel game engine which allows easy content-creation using Lua scripting.
</p>
</div>
</section>