-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblog.html
More file actions
32 lines (28 loc) · 962 Bytes
/
blog.html
File metadata and controls
32 lines (28 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
layout: subpages
title: Mission Focus
---
<div class="col-md-6 col-md-offset-3 col-sm-12 col-xs-12">
<div class="posts">
{% for post in site.posts %}
<div class="row">
<div class="post col-xs-10 col-sm-10 col-md-10 col-lg-5-offset-3">
<h2><a href="{{ post.url }}" class="posts--blog-title">{{ post.title }}</a></h2>
<div class="col-xs-12">
<p>{{ post.description }} <span>{{ post.author }}</span></p>
</div>
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<svg version="1.1" x="0px" y="0px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<clipPath id="circle">
<circle cx="150" cy="150" r="149.557"/>
</clipPath>
</g>
<image clip-path="url(#circle)" height="100%" width="100%" xlink:href="/img/team/{{ post.img }}" />
</svg>
</div>
</div>
{% endfor %}
</div>
</div>