diff --git a/content/pages/_index.md b/content/pages/_index.md index ac36e06..f9ea25a 100644 --- a/content/pages/_index.md +++ b/content/pages/_index.md @@ -1,2 +1,4 @@ +++ +title = "all pages" +template = "listing.html" +++ diff --git a/static/resume.json b/static/resume.json new file mode 100644 index 0000000..d2ab007 --- /dev/null +++ b/static/resume.json @@ -0,0 +1,29 @@ +{ + "basics": { + "name": "Michael Zhang", + "email": "iptq@protonmail.com", + "phone": "240-813-8477", + "website": "https://mzhang.me", + "profiles": [ + { + "network": "Twitter", + "username": "_iptq", + "url": "https://twitter.com/_iptq" + } + ] + }, + "education": [{ + "institution": "University of Minnesota-Twin Cities", + "area": "Computer Science", + "studyType": "Bachelor", + "startDate": "2016-09-06", + "endDate": "2019-05-15", + "gpa": "3.2" + }], + "languages": [ + { + "language": "English", + "fluency": "Native speaker" + } + ], +} \ No newline at end of file diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..f19c0c3 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,10 @@ +{% extends "layout.html" %} + +{% block title %} + 404 - {{ config.title }} +{% endblock %} + +{% block content %} +

nothing here

+

top

+{% endblock %} diff --git a/templates/layout.html b/templates/layout.html index db79515..aded6f1 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -18,8 +18,13 @@
- written by michael zhang. - source +

+ all pages +

+

+ written by michael zhang. + source +

diff --git a/templates/listing.html b/templates/listing.html new file mode 100644 index 0000000..db2daa7 --- /dev/null +++ b/templates/listing.html @@ -0,0 +1,16 @@ +{% extends "layout.html" %} + +{% block title %} + {% if section.title %}{{ section.title }} - {% endif %} + {{ config.title }} +{% endblock %} + +{% block content %} +

{{ section.title }}

+ + +{% endblock %} diff --git a/templates/post.html b/templates/post.html index 047c538..20595a9 100644 --- a/templates/post.html +++ b/templates/post.html @@ -8,7 +8,8 @@ {% endblock %} {% block content %} -

{{ page.title }}

+ « back +

{{ page.title }}

{% if page.date or page.author %} Posted