From f99ee08af6c5a499cde827a66b2134d01471b8a4 Mon Sep 17 00:00:00 2001 From: Silvano Sallese Date: Sun, 2 Aug 2020 18:32:13 +0200 Subject: first commit --- templates/index.html | 28 +++++++++++ templates/macros.html | 127 ++++++++++++++++++++++++++++++++++++++++++++++++++ templates/page.html | 6 +++ 3 files changed, 161 insertions(+) create mode 100644 templates/index.html create mode 100644 templates/macros.html create mode 100644 templates/page.html (limited to 'templates') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..384f103 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,28 @@ +{% import "macros.html" as macros %} + + + + + {{ macros::head() }} + + + + {{ macros::header() }} + +
+ {{ macros::about() }} +
+ +
+ {{ macros::projects() }} +
+ + {% block content %} +

+ {% endblock content %} + + + {{ macros::footer() }} + {{ macros::google_analytics() }} + + diff --git a/templates/macros.html b/templates/macros.html new file mode 100644 index 0000000..adf5088 --- /dev/null +++ b/templates/macros.html @@ -0,0 +1,127 @@ + +{% macro head() %} + + + + + + {% if page.title %}{{ page.title }}{% else %}{{ config.title }}{% endif %} + + + + +{% endmacro head %} + +{% macro about() %} +
+

My Expertise

+

{{ config.extra.user_description }}

+
+
+
+

Design

+ + + +

Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. + Vinyl XOXO lumbersexual

+
+
+

Code

+ + + +

Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. + Vinyl XOXO lumbersexual

+
+
+

Tools

+ + + +

Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. + Vinyl XOXO lumbersexual

+
+
+{% endmacro about %} + +{% macro footer() %} + + + + +{% endmacro footer %} + +{% macro projects() %} +
+

Featured Projects

+
+
+
+ mountains +
+
+

Project Title

+
    +
  • Featured Skills
  • +
+

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

+ Check it out +
+
+
+
+ mountains +
+
+

Project Title

+
    +
  • Featured Skills
  • +
+

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

+ Check it out +
+
+{% endmacro projects %} + +{% macro header() %} +
+
+

+ {{ config.extra.username }} + {{ config.extra.user_title }} +

+
+ + + + +
+ +
+ +
+{% endmacro header %} + +{% macro google_analytics() %} + +{% if config.extra.google_analytics %} + +{% endif %} +{% endmacro google_analytics %} diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..7d3c175 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,6 @@ +{% extends "index.html" %} + +{% block content %} + {{ page.content }} +{% endblock content %} + -- cgit v1.2.3