diff --git a/.gitignore b/.gitignore index 4555a07..fcb2476 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ _site .sass-cache .jekyll-metadata -.jekyll-cache/ +.jekyll-cache diff --git a/_config.yml b/_config.yml index 3d8bd57..22effb2 100644 --- a/_config.yml +++ b/_config.yml @@ -7,10 +7,14 @@ url: "https://www.aronajones.com" # the base hostname & protocol for your site, twitter_username: aronajones_ github_username: FreneticScribbler +minima: + skin: dark + # Build settings theme: minima plugins: - jekyll-feed + - jekyll-seo-tag # Exclude from processing. # The following items will not be processed, by default. diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..57dd0c3 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,29 @@ + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..258e05f --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,21 @@ + + + + {%- include head.html -%} + + + + {%- include header.html -%} + +
+
+ {{ content }} +
+ unsplash-logoChristian Wiediger +
+ + {%- include footer.html -%} + + + + diff --git a/_layouts/home.html b/_layouts/home.html new file mode 100644 index 0000000..b429371 --- /dev/null +++ b/_layouts/home.html @@ -0,0 +1,12 @@ +--- +layout: default +--- + +
+ {%- if page.title -%} +

{{ page.title }}

+ {%- endif -%} + + {{ content }} + +
diff --git a/blog.md b/blog.md new file mode 100644 index 0000000..a7d3448 --- /dev/null +++ b/blog.md @@ -0,0 +1,52 @@ +--- +layout: page +title: Blog +permalink: /blog/ +--- +{% if site.paginate %} +{% assign posts = paginator.posts %} +{% else %} +{% assign posts = site.posts %} +{% endif %} + + +{%- if posts.size > 0 -%} +{%- if page.list_title -%} +

{{ page.list_title }}

+{%- endif -%} + + +{% if site.paginate %} +
+ +
+{%- endif %} + +{%- endif -%} diff --git a/christian-wiediger-WkfDrhxDMC8-unsplash.jpg b/christian-wiediger-WkfDrhxDMC8-unsplash.jpg new file mode 100644 index 0000000..4228493 Binary files /dev/null and b/christian-wiediger-WkfDrhxDMC8-unsplash.jpg differ