-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (57 loc) · 2.58 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: default
title: Home
description:
---
<!--<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="/google_stacked_chart.js"></script>-->
<div class="container">
<!-- <img src="/img/summer-fall-stream1.jpg" class="img-responsive" style="margin: 30px 250px 30px 10px; " alt="fake-streamgraph" />-->
{% assign featured_posts = (site.posts|where:"featured","true") %}
{% for post in featured_posts limit: 1 %}
<div class="row" style="margin-top: 30px; margin-bottom: 30px;">
<div class="col-md-10 col-md-offset-1">
<p style="margin-bottom: 30px; font-family: Andada;"><i>The Science of the Deal</i> is a project of the <a href="http://rpc.virginia.edu/">Initiative on Religion, Politics and Conflict</a> at the University of Virginia that seeks to foster engaged research on questions at the intersection of political leadership, discourse, and values. </p>
<!--<div class="top_line" style="margin-bottom: 8px;"></div>-->
<div class="top_line"></div>
<div class="line_container">
<h2 class="body_title">Featured Analysis</h2>
<div class="body_title_line"></div>
</div>
</div>
</div>
<div class="row">
<div itemscope itemtype="http://schema.org/Article">
{% if post.image %}
<div class="col-md-7 col-md-push-3 col-md-offset-1">
<img src="{{ post.image }}" class="img-responsive" style="margin-bottom: 8px;">
</div>
{% endif %}
<div class="col-md-3 col-md-pull-7 ">
{% include article_listing.html %}
</div>
</div>
</div>
{% endfor %}
<div class="row" style="margin-top: 90px; margin-bottom: 30px;">
<div class="col-md-10 col-md-offset-1">
<div class="top_line"></div>
<div class="line_container">
<h2 class="body_title">Recent Analysis</h2>
<div class="body_title_line"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
{% assign recent_posts = (site.posts|where:"featured","false") %}
{% for post in recent_posts limit:10 %}
{% include article_listing.html %}
{% endfor %}
</div>
<!--<div class="col-md-4 well newsletter-container text-center">-->
<!--Newsletter Sign-Up<br/>-->
<!--(future iteration)-->
<!--</div>-->
</div>
</div>