diff options
Diffstat (limited to 'blog.html')
| -rw-r--r-- | blog.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..e8ace32 --- /dev/null +++ b/blog.html @@ -0,0 +1,24 @@ +--- +layout: default +title: Blog +permalink: +--- + <div id="mainContent"> + <!-- About, Blog tiles, Solutions, etc. --> + <div id="blog"> + <h2>Blog</h2> + <ul> + {% for post in site.posts %} + <li> + <a href="{{ post.url | relative_url }}"> + {% if post.image %} + <img src="{{ post.image | relative_url }}"> + {% endif %} + <h3>{{ post.title }}</h3> + <p>{{ post.excerpt }}</p> + </a> + </li> + {% endfor %} + </ul> + </div> + </div>
\ No newline at end of file |
