aboutsummaryrefslogtreecommitdiff
path: root/docs/blog
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-10-05 17:39:21 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-10-06 16:39:40 +0200
commitd6583e52da599a6067f12950b7df575b31b3fbee (patch)
tree6423f06e0e6adb49fa41fb8cc4136df10b72cb3b /docs/blog
parent6777edc4f8bbd14a82a282740545d91af4d2f7b5 (diff)
downloaddotty-d6583e52da599a6067f12950b7df575b31b3fbee.tar.gz
dotty-d6583e52da599a6067f12950b7df575b31b3fbee.tar.bz2
dotty-d6583e52da599a6067f12950b7df575b31b3fbee.zip
Add Jekyll as static site generator
Diffstat (limited to 'docs/blog')
-rw-r--r--docs/blog/_posts/2015-10-23-dotty-compiler-bootstraps.md (renamed from docs/blog/2015-10-23-dotty-compiler-bootstraps.md)3
-rw-r--r--docs/blog/_posts/2016-01-02-new-year-resolutions.md (renamed from docs/blog/2016-01-02-new-year-resolutions.md)1
-rw-r--r--docs/blog/_posts/2016-02-03-essence-of-scala.md (renamed from docs/blog/2016-02-03-essence-of-scala.md)1
-rw-r--r--docs/blog/_posts/2016-02-17-scaling-dot-soundness.md (renamed from docs/blog/2016-02-17-scaling-dot-soundness.md)1
-rw-r--r--docs/blog/_posts/2016-05-05-multiversal-equality.md (renamed from docs/blog/2016-05-05-multiversal-equality.md)1
-rw-r--r--docs/blog/index.html22
6 files changed, 27 insertions, 2 deletions
diff --git a/docs/blog/2015-10-23-dotty-compiler-bootstraps.md b/docs/blog/_posts/2015-10-23-dotty-compiler-bootstraps.md
index 519848f23..b6ee44020 100644
--- a/docs/blog/2015-10-23-dotty-compiler-bootstraps.md
+++ b/docs/blog/_posts/2015-10-23-dotty-compiler-bootstraps.md
@@ -1,11 +1,10 @@
---
+layout: blog
author: Martin Odersky and Dmitry Petrashko
title: "We got liftoff!"
subTitle: The Dotty compiler for Scala bootstraps.
---
-## We got liftoff!
-
The [Dotty project](https://github.com/lampepfl/dotty)
is a platform to develop new technology for Scala
tooling and to try out concepts of future Scala language versions.
diff --git a/docs/blog/2016-01-02-new-year-resolutions.md b/docs/blog/_posts/2016-01-02-new-year-resolutions.md
index 7402a2347..a4ce3a54e 100644
--- a/docs/blog/2016-01-02-new-year-resolutions.md
+++ b/docs/blog/_posts/2016-01-02-new-year-resolutions.md
@@ -1,4 +1,5 @@
---
+layout: blog
title: New Year Resolutions
author: Martin Odersky
authorImg: /images/martin.jpg
diff --git a/docs/blog/2016-02-03-essence-of-scala.md b/docs/blog/_posts/2016-02-03-essence-of-scala.md
index e5e68d0fd..0d457e0d8 100644
--- a/docs/blog/2016-02-03-essence-of-scala.md
+++ b/docs/blog/_posts/2016-02-03-essence-of-scala.md
@@ -1,4 +1,5 @@
---
+layout: blog
title: The Essence of Scala
author: Martin Odersky
authorImg: /images/martin.jpg
diff --git a/docs/blog/2016-02-17-scaling-dot-soundness.md b/docs/blog/_posts/2016-02-17-scaling-dot-soundness.md
index e01b66d09..0719cc3aa 100644
--- a/docs/blog/2016-02-17-scaling-dot-soundness.md
+++ b/docs/blog/_posts/2016-02-17-scaling-dot-soundness.md
@@ -1,4 +1,5 @@
---
+layout: blog
title: Scaling DOT to Scala - Soundness
author: Martin Odersky
authorImg: /images/martin.jpg
diff --git a/docs/blog/2016-05-05-multiversal-equality.md b/docs/blog/_posts/2016-05-05-multiversal-equality.md
index e6c8a2014..83bc67059 100644
--- a/docs/blog/2016-05-05-multiversal-equality.md
+++ b/docs/blog/_posts/2016-05-05-multiversal-equality.md
@@ -1,4 +1,5 @@
---
+layout: blog
title: Multiversal Equality for Scala
author: Martin Odersky
authorImg: /images/martin.jpg
diff --git a/docs/blog/index.html b/docs/blog/index.html
new file mode 100644
index 000000000..7063378d5
--- /dev/null
+++ b/docs/blog/index.html
@@ -0,0 +1,22 @@
+---
+layout: default
+title: "Blog"
+---
+
+<h1>Blog</h1>
+
+<ul class="post-list">
+ {% for post in site.posts %}
+ <li>
+ <div>
+ <a href="{{ post.url }}">{{ post.title }}</a>
+ </div>
+ <div class="date">
+ {{ post.date | date: '%B %d, %Y' }}
+ </div>
+ <div class="excerpt">
+ {{ post.excerpt }}
+ </div>
+ </li>
+ {% endfor %}
+</ul>