Added an introduction to Brutus to fill some space on the project page.

This commit is contained in:
Russell Keith-Magee 2016-07-03 20:22:58 +08:00
parent 7bde4dea30
commit b47bb2bc55
3 changed files with 37 additions and 1 deletions

View file

@ -330,5 +330,13 @@ body {
}
/*----------------------------------------------------
Events
About
--------------------------------------------------- */
.about {
text-align: center;
}
.about img {
margin-bottom: 1rem;
}

View file

@ -1,7 +1,19 @@
_model: page
---
_template: beeware.html
---
title: BeeWare Project
---
summary: What is the BeeWare project?
---
sort_key: 3
---
gutter:
Meet Brutus
===========
.. image:: /static/images/brutus-128.png
Brutus the Bee is the mascot of the BeeWare project. He's a busy little worker bee.
Fun fact: a person who keeps bees is called an **apiarist** - a name that the BeeWare project uses to describe the core team. This also reflects the relationship that the core team wishes to have with the community - we're shepherds of the community, and we'll provide direction, but we know the real work is done by the community as a whole.

16
templates/beeware.html Normal file
View file

@ -0,0 +1,16 @@
{% extends "page.html" %}
{% block body %}
<div class="row-fluid">
<div class="col-sm-12 col-md-8 col-lg-6">
{% for child in this.children %}
{% if not child.hide_from_index %}
<h2><a href="{{ child|url }}">{{ child.title }}</a></h2>
<p>{{ child.summary }}</p>
{% endif %}
{% endfor %}
</div>
<div class="col-sm-12 col-md-4 col-lg-6 gutter about">
{{ this.gutter }}
</div>
</div>
{% endblock %}