-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (62 loc) · 2.85 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
82
83
84
85
86
87
---
layout: default
make-smaller-titles: false
---
<div class="container-fluid index">
<div class="row">
<div class="col-md-12 main content-panel">
<div class="gravatar">
<img src="{{ site.title_image | prepend: site.baseurl }}" class="img-circle about-image" height="150" width="150" alt="{{ site.title }}" />
</div>
<h1 class="header author-header" itemprop="headline">{{ site.title }}</h1>
<div class="author-text">
{% capture title_description %}{% include title_description.md %}{% endcapture %}
{{ title_description | markdownify }}
</div>
{% include social_links.html %}
</div>
<div class="col-md-12 main content-panel">
<div class="articles">
<h2>{{ site.latest_headline }}</h2>
<ul>
{% for post in paginator.posts %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<small class="hidden-xs">{{ post.date | date: "%B %-d, %Y" }}</small>
</li>
{% endfor %}
{% if paginator.total_pages > 1 %}
<li>
<small>
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | relative_url }}">« Newer</a>
{% else %}
<span>« Newer</span>
{% endif %}
</small>
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<strong>{{ page }}</strong>
{% elsif page == 1 %}
<a href="{{ '/' | relative_url }}">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | relative_url | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
<small>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | relative_url }}">Older »</a>
{% else %}
<span>Older »</span>
{% endif %}
</small>
</li>
{% endif %}
</ul>
<!--<h2>Appraisals by AMA Specialty Tags</h2>-->
{% comment %}{% include specialty_tags_cloud.html %}{% endcomment %}
</div>
</div>
</div>
{% include search_bar.html %}
</div>