diff --git a/assets/scss/_content.scss b/assets/scss/_content.scss
index 33193ed..722df96 100644
--- a/assets/scss/_content.scss
+++ b/assets/scss/_content.scss
@@ -1,6 +1,5 @@
.content {
- flex: 1;
- display: flex;
+ display: block;
margin-top: 1.6rem;
margin-bottom: 3.2rem;
article {
diff --git a/layouts/index.html b/layouts/index.html
index b829b61..3b53f4e 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,3 +1,4 @@
{{ define "content" }}
{{ partial "home.html" . }}
+ {{ partial "timeline.html" . }}
{{ end }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 1677656..5422fff 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -13,7 +13,7 @@
{{ end }}
{{ if not .Site.Params.hideCredits }}
{{ if not .Site.Params.hideCopyright }} · {{ end }}
- {{ i18n "powered_by" }} Hugo & Coder.
+ {{ i18n "powered_by" }} Hugo & Coder-Timeline.
{{ end }}
{{ if .Site.Params.commit }}
{{ if or (not .Site.Params.hideCredits) (not .Site.Params.hideCopyright) }} · {{ end }}
diff --git a/layouts/partials/timeline.html b/layouts/partials/timeline.html
new file mode 100644
index 0000000..eb3ae37
--- /dev/null
+++ b/layouts/partials/timeline.html
@@ -0,0 +1,14 @@
+
+
+ Projects
+
+
+ {{ range .Paginator.Pages }}
+ -
+ {{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
+ {{ .Title }}
+
+ {{ end }}
+
+ {{ partial "pagination.html" . }}
+