diff --git a/project/home/models.py b/project/home/models.py index 2cd83c8..0143747 100755 --- a/project/home/models.py +++ b/project/home/models.py @@ -4,6 +4,8 @@ from wagtail.wagtailadmin.edit_handlers import FieldPanel class HomePage(Page): + is_home = True + body = RichTextField(blank=True) content_panels = Page.content_panels + [ diff --git a/templates/base.html b/templates/base.html index 1866cb3..83fb780 100755 --- a/templates/base.html +++ b/templates/base.html @@ -20,6 +20,8 @@ {% wagtailuserbar %} + {% include 'common/navbar.html' with page=self %} + {% block content %}{% endblock %} diff --git a/templates/common/navbar.html b/templates/common/navbar.html new file mode 100644 index 0000000..d2158aa --- /dev/null +++ b/templates/common/navbar.html @@ -0,0 +1,30 @@ + diff --git a/templates/home/home_page.html b/templates/home/home_page.html index d1a2f6d..bbabc57 100755 --- a/templates/home/home_page.html +++ b/templates/home/home_page.html @@ -5,5 +5,127 @@ {% block body_class %}template-homepage{% endblock %} {% block content %} - {{ page.body|richtext }} +
+
+
+

Jake Howard

+
+

Full-stack Developer, Hardware tinkerer, Hacker of all the things

+
+
+ + + +
+ +
+
+
+
+

About

+
+ {{ page.body|richtext }} + More Info +
+
+
+
+ +
+
+
+
+

Skills

+
+
+
+
+
+
+
+
+ +

Server

+

Designing and building high-performance server applications and environments

+
+
+
+
+ +

Client

+

Creating functional, fast, and responsive websites

+
+
+
+
+ +

Mobile

+

Building lightweight, cross-platform mobile applications

+
+
+
+
+ +

Hardware

+

Constructing workflow-specific Desktops, Servers and Notebooks

+
+
+
+
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+

Blog

+
+
+
+
+
+ View all posts +
+
+
+
+ +
+
+
+
+

More Content

+
+

There's more than just my project and blog!

+
+
+ +
+
{% endblock %}