Added an introduction to Brutus to fill some space on the project page.
This commit is contained in:
parent
7bde4dea30
commit
b47bb2bc55
3 changed files with 37 additions and 1 deletions
|
|
@ -330,5 +330,13 @@ body {
|
|||
}
|
||||
|
||||
/*----------------------------------------------------
|
||||
Events
|
||||
About
|
||||
--------------------------------------------------- */
|
||||
|
||||
.about {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about img {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
16
templates/beeware.html
Normal 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 %}
|
||||
Loading…
Reference in a new issue