Add missing static page
This commit is contained in:
parent
9abda1f3f1
commit
c554d7f2b8
5 changed files with 102 additions and 0 deletions
56
pinaxcon/templates/flatpages/keynotes.html
Normal file
56
pinaxcon/templates/flatpages/keynotes.html
Normal file
|
@ -0,0 +1,56 @@
|
|||
{% extends "site_base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block head_title %}{{ flatpage.title }}{% endblock head_title %}
|
||||
{% block body_class %}text-primary{% endblock body_class %}
|
||||
{% block main_class %}container{% endblock main_class %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="col-12 content text-page">
|
||||
<h1 class="text-upper">Keynote Speakers</h1>
|
||||
<div class="card-deck">
|
||||
<div class="card card-green">
|
||||
<a href="/programme/keynotes/rory/">
|
||||
<img class="card-img-top" src="{% static '/assets/speakers/rory.jpg' %}" style="filter: grayscale(100%);" alt="Rory Aronson">
|
||||
</a>
|
||||
<div class="card-body">
|
||||
<a href="/programme/keynotes/rory/">
|
||||
<h5><strong>Rory Aronson</strong></h5>
|
||||
</a>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
CEO | FarmBot Inc
|
||||
</div>
|
||||
</div>
|
||||
<div class="card card-green">
|
||||
<img class="card-img-top" src="//placekitten.com/600/600" style="filter: grayscale(100%);" alt="Kitten">
|
||||
<div class="card-body">
|
||||
<h5><strong>Unannounced Speaker</strong></h5>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-deck mt-4">
|
||||
<div class="card card-green">
|
||||
<img class="card-img-top" src="//placebear.com/600/600" style="filter: grayscale(100%);" alt="Bear">
|
||||
<div class="card-body">
|
||||
<h5><strong>Unannounced Speaker</strong></h5>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
</div>
|
||||
</div>
|
||||
<div class="card card-green">
|
||||
<img class="card-img-top" src="//placepuppy.net/600/600" style="filter: grayscale(100%);" alt="Puppy">
|
||||
<div class="card-body">
|
||||
<h5><strong>Unannounced Speaker</strong></h5>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock content %}
|
0
pinaxcon/templates/keynotes/base.html
Normal file
0
pinaxcon/templates/keynotes/base.html
Normal file
29
pinaxcon/templates/keynotes/rory.html
Normal file
29
pinaxcon/templates/keynotes/rory.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
{% extends "site_base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block head_title %}{{ flatpage.title }}{% endblock head_title %}
|
||||
{% block body_class %}text-primary{% endblock body_class %}
|
||||
{% block main_class %}container{% endblock main_class %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="col-8 content text-page">
|
||||
<h1>Rory Aronson<br /><small class="subtitle">CEO of FarmBot Inc.</small></h1>
|
||||
<p>
|
||||
Rory is the CEO of FarmBot Inc, a California benefit corporation that produces 100% open-source CNC farming machines designed
|
||||
for small-scale automated precision food production.
|
||||
</p>
|
||||
<p>
|
||||
Rory started the project from his sunny porch in San Luis Obispo with the publishing of the FarmBot
|
||||
whitepaper in September of 2013. From there, he formed a small team consisting of hardware and software
|
||||
engineers who brought the project to market in July of 2016 with the debut of FarmBot Genesis.
|
||||
</p>
|
||||
<p>
|
||||
After raising over $1,000,000 in pre-order sales in 2016, the team shipped their first units to customers in early 2017.
|
||||
Today, over 900 FarmBot kits have been delivered to customers all around the world, and the FarmBot community continues to grow.
|
||||
</p>
|
||||
|
||||
<img src="{% static '/assets/speakers/rory.jpg' %}" style="filter: grayscale(100%);" alt="Rory Aronson" />
|
||||
</div>
|
||||
</div>
|
||||
{% endblock content %}
|
BIN
static/src/assets/speakers/rory.jpg
Normal file
BIN
static/src/assets/speakers/rory.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 84 KiB |
|
@ -650,3 +650,20 @@ hr {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card.card-green {
|
||||
border: 1px solid $primary;
|
||||
border-radius: 0;
|
||||
padding: 1rem;
|
||||
background-color: rgba(204,213,197,0.1);
|
||||
|
||||
.card-footer {
|
||||
border-top: 0;
|
||||
background-color: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-weight: 600;
|
||||
font-size: 1.5rem;
|
||||
}
|
Loading…
Reference in a new issue