diff --git a/_config.yml b/_config.yml index 147c2e7..953f1e4 100644 --- a/_config.yml +++ b/_config.yml @@ -13,7 +13,9 @@ collections: thesis: output: true talks: - output: true + output: true + projects: + output: true plugins: diff --git a/_data/navigation.yml b/_data/navigation.yml index b44fb10..712f917 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -4,3 +4,5 @@ link: /cv/ - name: Thesis link: /thesis/ +- name: Projects + link: /projects/ diff --git a/_drafts/test_map.html b/_drafts/test_map.html deleted file mode 100644 index de4e7bf..0000000 --- a/_drafts/test_map.html +++ /dev/null @@ -1,119 +0,0 @@ ---- -title: Test Map -excerpt: ---- - - - - - - - - - - - - - - -
- - - - - - diff --git a/_projects/tonis_map.html b/_projects/tonis_map.html new file mode 100644 index 0000000..ce076aa --- /dev/null +++ b/_projects/tonis_map.html @@ -0,0 +1,235 @@ +--- +title: Toni's Map +excerpt: A going away present for my friend Toni. +permalink: /tonis-map/ +assets: /assets/blog/maps/icons +image: /assets/blog/maps/tonis_map.png +--- + + + + + + + + + + + + + + +
+ + + + + + diff --git a/_sass/main.scss b/_sass/main.scss index e16ba18..d195756 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -4,6 +4,7 @@ @import "nav"; //the side navbar @import "header"; // the header @import "article"; // individual blog articles +@import "projects"; //Styles for the projects page @import "cv"; // the CV page @import "thesis"; // the thesis content @import "blogroll"; // the summaries of the blogposts diff --git a/_sass/projects.scss b/_sass/projects.scss new file mode 100644 index 0000000..0eac69c --- /dev/null +++ b/_sass/projects.scss @@ -0,0 +1,9 @@ +article.project { + display: flex; + + img { + height: 7em; + margin-right: 1em; + border-radius: 2em; + } +} \ No newline at end of file diff --git a/assets/blog/maps/tonis_map.png b/assets/blog/maps/tonis_map.png new file mode 100644 index 0000000..d567e4d Binary files /dev/null and b/assets/blog/maps/tonis_map.png differ diff --git a/projects.md b/projects.md new file mode 100644 index 0000000..354d21b --- /dev/null +++ b/projects.md @@ -0,0 +1,21 @@ +--- +title: Projects +layout: default +redirect_from: + - /projects/ +--- +{% for post in site.projects %} +
+ {% unless post.hide_image %} +
+ {{post.alt}} +
+ {% endunless %} + +
+

{{ post.title }}

+ + {{ post.excerpt | markdownify | remove: '

' | remove: '

' }}
+
+
+{% endfor %} \ No newline at end of file