diff options
| author | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-07-04 19:47:35 -0400 |
|---|---|---|
| committer | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-07-04 19:47:35 -0400 |
| commit | cb192289eeecccb750f613b993dc3f366446d4f2 (patch) | |
| tree | 5ae1e230e0592712774a07f5e2b5bf5f2401eba5 /blog.html | |
Initial Commit
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 |
