aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2019-10-22 05:48:34 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2019-10-22 05:48:34 +0200
commite9a04d9c7fa9edaf54cd16a0aefee4fcb0367a6c (patch)
treec80c5d3f7c770e92a9814dd0fa318903460604a6
parent8f38bdec060c9de8da5dbabf6d1d8dfafd2ebea3 (diff)
downloadmitjafelicijan.com-e9a04d9c7fa9edaf54cd16a0aefee4fcb0367a6c.tar.gz
Restructure blog
-rw-r--r--config4
-rw-r--r--src/feed.atom6
-rw-r--r--src/index.html4
-rw-r--r--src/notes/golang-profiling-simplified.md (renamed from src/blog/golang-profiling-simplified.md)0
-rw-r--r--src/notes/simplifying-and-reducing-clutter.md (renamed from src/blog/simplifying-and-reducing-clutter.md)0
-rw-r--r--src/notes/what-i-ve-learned-developing-ad-server.md (renamed from src/blog/what-i-ve-learned-developing-ad-server.md)0
-rw-r--r--src/sandbox/profiling-python-web-applications-with-visual-tools.md (renamed from src/blog/profiling-python-web-applications-with-visual-tools.md)0
-rw-r--r--src/sandbox/simple-iot-application.md (renamed from src/blog/simple-iot-application.md)0
8 files changed, 7 insertions, 7 deletions
diff --git a/config b/config
index cb62e2b..a781df6 100644
--- a/config
+++ b/config
@@ -7,7 +7,7 @@ GOOGLE_VERIFICATION = EwUGW1WlCkRIQuyQ9AE1-bLitWthw-eVMZFTAMZVZaA
7URL = https://mitjafelicijan.com 7URL = https://mitjafelicijan.com
8AUTHOR = Mitja Felicijan 8AUTHOR = Mitja Felicijan
9 9
10blog/*.md: 10notes/*.md:
11 config 11 config
12 ext .html 12 ext .html
13 tags tags/*.tag 13 tags tags/*.tag
@@ -23,7 +23,7 @@ sandbox/*.md:
23 template post 23 template post
24 template page 24 template page
25 25
26feed.atom: blog/*.md 26feed.atom: notes/*.md
27 inner-template 27 inner-template
28 28
29*.md: 29*.md:
diff --git a/src/feed.atom b/src/feed.atom
index 9dc15ae..33fa07f 100644
--- a/src/feed.atom
+++ b/src/feed.atom
@@ -2,14 +2,14 @@
2<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0"> 2<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
3 <id>{{ .Site.Other.Url }}</id> 3 <id>{{ .Site.Other.Url }}</id>
4 <title>{{ .Site.Other.Title }}</title> 4 <title>{{ .Site.Other.Title }}</title>
5 {{ with .Site.Pages.Children "blog/" }} 5 {{ with .Site.Pages.Children "notes/" }}
6 <updated>{{ .First.Date.Format "2006-01-02T15:04:05Z07:00" }}</updated> 6 <updated>{{ .First.Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
7 {{ end }} 7 {{ end }}
8 <author><name>{{ .Site.Other.Author }}</name></author> 8 <author><name>{{ .Site.Other.Author }}</name></author>
9 <link href="{{ .Site.Other.Url }}" rel="alternate"></link> 9 <link href="{{ .Site.Other.Url }}" rel="alternate"></link>
10 <generator uri="https://github.com/piranha/gostatic">gostatic</generator> 10 <generator uri="https://github.com/piranha/gostatic">gostatic</generator>
11 11
12{{ with .Site.Pages.Children "blog/" }} 12{{ with .Site.Pages.Children "notes/" }}
13{{ range .Slice 0 5 }} 13{{ range .Slice 0 5 }}
14<entry> 14<entry>
15 <id>{{ .Url }}</id> 15 <id>{{ .Url }}</id>
@@ -30,7 +30,7 @@
30{{ end }} 30{{ end }}
31{{ end }} 31{{ end }}
32 32
33{{ with .Site.Pages.Children "research/" }} 33{{ with .Site.Pages.Children "sandbox/" }}
34{{ range .Slice 0 5 }} 34{{ range .Slice 0 5 }}
35<entry> 35<entry>
36 <id>{{ .Url }}</id> 36 <id>{{ .Url }}</id>
diff --git a/src/index.html b/src/index.html
index 0384538..921bbf7 100644
--- a/src/index.html
+++ b/src/index.html
@@ -8,9 +8,9 @@
8{{ end }} 8{{ end }}
9</ul> 9</ul>
10 10
11<h2>Blog entries</h2> 11<h2>General notes</h2>
12<ul class="article-list"> 12<ul class="article-list">
13{{ range .Site.Pages.Children "blog/" }} 13{{ range .Site.Pages.Children "notes/" }}
14 <li> 14 <li>
15 {{ template "date" .Date }} 15 {{ template "date" .Date }}
16 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a> 16 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a>
diff --git a/src/blog/golang-profiling-simplified.md b/src/notes/golang-profiling-simplified.md
index a49de67..a49de67 100644
--- a/src/blog/golang-profiling-simplified.md
+++ b/src/notes/golang-profiling-simplified.md
diff --git a/src/blog/simplifying-and-reducing-clutter.md b/src/notes/simplifying-and-reducing-clutter.md
index b435834..b435834 100644
--- a/src/blog/simplifying-and-reducing-clutter.md
+++ b/src/notes/simplifying-and-reducing-clutter.md
diff --git a/src/blog/what-i-ve-learned-developing-ad-server.md b/src/notes/what-i-ve-learned-developing-ad-server.md
index 527f9d0..527f9d0 100644
--- a/src/blog/what-i-ve-learned-developing-ad-server.md
+++ b/src/notes/what-i-ve-learned-developing-ad-server.md
diff --git a/src/blog/profiling-python-web-applications-with-visual-tools.md b/src/sandbox/profiling-python-web-applications-with-visual-tools.md
index e99b9ff..e99b9ff 100644
--- a/src/blog/profiling-python-web-applications-with-visual-tools.md
+++ b/src/sandbox/profiling-python-web-applications-with-visual-tools.md
diff --git a/src/blog/simple-iot-application.md b/src/sandbox/simple-iot-application.md
index 2b7d67f..2b7d67f 100644
--- a/src/blog/simple-iot-application.md
+++ b/src/sandbox/simple-iot-application.md