Merge branch 're-re-design' into 'master'

The Re-re-design 2017

See merge request ariejan/devroom.io!6
This commit is contained in:
Ariejan de Vroom 2017-10-16 16:24:25 +02:00
commit 03320079d2
406 changed files with 3792 additions and 2 deletions

3
.gitignore vendored
View File

@ -3,3 +3,6 @@
# Other things
.DS_Store
# Low resolution image, generated by CI
/static/img/low

View File

@ -2,7 +2,19 @@ image: ariejan/dockerized-hugo:latest
test:
script:
# Compile
- hugo
# Compress CSS
- yui-compressor public/css/style.css -o public/css/style-min.css
- mv -f public/css/style-min.css public/css/style.css
# Mogrify thumbnails
- mkdir -p public/img/low
- cd public/img
- mogrify -format png -path low -thumbnail 724 *.png
- mogrify -format jpg -path low -thumbnail 724 *.jpg
except:
- master
@ -23,6 +35,12 @@ pages:
- yui-compressor public/css/style.css -o public/css/style-min.css
- mv -f public/css/style-min.css public/css/style.css
# Mogrify thumbnails
- mkdir -p public/img/low
- cd public/img
- mogrify -format png -path low -thumbnail 724 *.png
- mogrify -format jpg -path low -thumbnail 724 *.jpg
# Deploy
- rsync -az4 --stats --delete-after public/* ariejan@mail.devroom.io:/home/ariejan/www/devroom.io/
artifacts:

View File

@ -1,7 +1,14 @@
baseurl = "https://www.devroom.io/"
languageCode = "en-us"
builddrafts = false
canonifyurls = true
contentdir = "content"
languageCode = "en-US"
layoutdir = "layouts"
publishdir = "public"
title = "ariejan de vroom"
copyright = "Ariejan de Vroom"
disqusshortname = ""
pluralizelisttitles = false
PygmentsCodeFences = true
pygmentsuseclasses = false
@ -14,4 +21,41 @@ pygmentsstyle = "monokai"
posts = "/:year/:month/:day/:slug/"
[taxonomies]
category = "categories"
category = "categories"
[params]
dateform = "2 Jan, 2006"
dateformfull = "Mon 2 Jan 2006 15:04:05 MST"
description = "a blog by ariejan de vroom about software engineering and electronics."
copyright = "Copyright © 1996 - 2017 Ariejan de Vroom"
# copyrightUrl = "https://creativecommons.org/licenses/by-sa/4.0/"
logofile = "img/logo.png"
faviconfile = "favicon.ico"
highlightjs = true
progressively = true
share = true
latestpostcount = 10
github = "ariejan"
email = "ariejan@devroom.io"
linkedin = "ariejan"
twitter = "ariejan"
facebook = ""
social_banner = "img/banner.png"
usesmallsummarycard = true
posts_navigation = true
# issoHost = "comments.domain.tld:1234"
# githubRepo = "githubUsername/repositoryName"
small_banner_logo = false
[params.colors]
identifier = "#527fc1f"
identifier_dark = "#1a3152"
trivial = "#6a7a8b"
foreground = "#181d2a"
background = "#f9f9f9"
background_dark = "#282a36"
code = "#87a5d2"
type = "#97d28b"
special = "#ffcb8d"
value = "#96c2d7"
statement = "#ff8e91"

Some files were not shown because too many files have changed in this diff Show More