-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathheader.html
More file actions
30 lines (29 loc) · 1002 Bytes
/
header.html
File metadata and controls
30 lines (29 loc) · 1002 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
<section class="header">
<div class="subscribe">
<table>
<tr>
<td><span>Get Updates: </span></td>
{% if site.subscribe_rss %}
<td><a href="{{ site.subscribe_rss}}" class="btn"><i class="icon-cog"></i> Via Atom</a></td>
{% endif %}
<td> </td>
{% if site.twitter_user %}
<td><a href="https://twitter.com/{{ site.twitter_user }}" class="btn"><i class="icon-twitter-sign"></i> On Twitter</a></td>
{% endif %}
<td> </td>
{% if site.github_repo %}
<td><a href="https://github.com/{{ site.github_repo }}" class="btn"><i class="icon-github-sign"></i> On GitHub</a></td>
{% endif %}
</tr>
</table>
</div>
<div>
<h1 class="title">
<a href="/"><img src="{{ site.url }}/images/rubysec-logo.png" width="80" height="80"></a>
{{ site.title }}
</h1>
{% if site.subtitle %}
<p class="lead">{{ site.subtitle }}</p>
{% endif %}
</div>
</section>