Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified src/assets/blog/compiler-team-photo-for-blog.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 24 additions & 21 deletions src/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,28 @@
---

<div class="row blog">
<div class="col-md-10 offset-md-1">
<span class="pill d-inline-block mb-4">Blog</span>
<h1 class="mb-2">Our blog</h1>
<span class="secondary-sans-serif-xs d-inline-block pb-4 mb-3">An inside look at Compiler’s internal projects, interests and our client projects.</span>
<img class="mw-100 mh-100" src="/assets/blog/compiler-team-photo-for-blog.jpg" alt="A photograph of some Compiler teammates overlooking the Pacific Ocean.">
</div>
<div class="col-md-6 offset-md-3">
<!-- Home Post List -->
{% for post in site.posts %}
<article class="post-preview">
<a class="h3 post-title text-white text-decoration-underline d-inline-block mb-2" href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
{{ post.title }}
</a>
<p class="font-monospace fw-boldest text-info mb-4">
By {{ post.author }}
</p>
<p class="post-subtitle text-info mb-3">{{ post.excerpt }}</p>
<p class="text-info fine-print">{{ post.date | date: '%B %d, %Y' }}</p>
</article>
{% endfor %}
</div>
<div class="col-md-10 offset-md-1">
<span class="pill d-inline-block mb-4">Blog</span>
<h1 class="mb-2">Our blog</h1>
<span class="secondary-sans-serif-xs d-inline-block pb-4 mb-3">An inside look at Compiler’s internal projects, interests and our client projects.</span>
<img
class="mw-100 mh-100"
src="/assets/blog/compiler-team-photo-for-blog.jpg"
alt="A group photograph of many members of the Compiler team at a winery in California.">
</div>
<div class="col-md-6 offset-md-3">
<!-- Home Post List -->
{% for post in site.posts %}
<article class="post-preview">
<a class="h3 post-title text-white text-decoration-underline d-inline-block mb-2" href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
{{ post.title }}
</a>
<p class="font-monospace fw-boldest text-info mb-4">
By {{ post.author }}
</p>
<p class="post-subtitle text-info mb-3">{{ post.excerpt }}</p>
<p class="text-info fine-print">{{ post.date | date: '%B %d, %Y' }}</p>
</article>
{% endfor %}
</div>
</div>