diff --git a/pinaxcon/templates/flatpages/keynotes.html b/pinaxcon/templates/flatpages/keynotes.html new file mode 100644 index 00000000..be84d64e --- /dev/null +++ b/pinaxcon/templates/flatpages/keynotes.html @@ -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 %} +
+
+

Keynote Speakers

+
+
+ + Rory Aronson + + + +
+
+ Kitten +
+
Unannounced Speaker
+
+ +
+
+
+
+ Bear +
+
Unannounced Speaker
+
+ +
+
+ Puppy +
+
Unannounced Speaker
+
+ +
+
+
+
+ +{% endblock content %} diff --git a/pinaxcon/templates/keynotes/base.html b/pinaxcon/templates/keynotes/base.html new file mode 100644 index 00000000..e69de29b diff --git a/pinaxcon/templates/keynotes/rory.html b/pinaxcon/templates/keynotes/rory.html new file mode 100644 index 00000000..be41a687 --- /dev/null +++ b/pinaxcon/templates/keynotes/rory.html @@ -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 %} +
+
+

Rory Aronson
CEO of FarmBot Inc.

+

+ 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. +

+

+ 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. +

+

+ 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. +

+ + Rory Aronson +
+
+{% endblock content %} diff --git a/static/src/assets/speakers/rory.jpg b/static/src/assets/speakers/rory.jpg new file mode 100644 index 00000000..8fafaa1d Binary files /dev/null and b/static/src/assets/speakers/rory.jpg differ diff --git a/static/src/scss/app.scss b/static/src/scss/app.scss index a558469b..b5e96cb5 100644 --- a/static/src/scss/app.scss +++ b/static/src/scss/app.scss @@ -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; +} \ No newline at end of file