blob: 3a0c21eba9b990bb3ce0614b66e53f8056d0ceed (
plain)
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
|
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<div class="page-content">
<div class="container">
<div class="col-xs-12 col-md-8">
{{ content }}
</div>
<div class="col-xs-12 col-md-4">
<h2>What's this?</h2>
<p>
You are visiting the official website for the IRC
client Irssi, for more information see the about
section.
</p>
<h4 style='margin-bottom:0'>Search this site</h4>
<div><script>
(function() {
var cx = '013138746835038969445:mlfkigveyj4';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:searchbox-only></gcse:searchbox-only></div>
<h4>What's new?</h4>
<p><a href="/2014/10/11/irssi-0.8.17-released">Irssi 0.8.17 has been released!</a></p>
{% if page.title contains 'News' %}<div>
<a class="twitter-timeline" data-widget-id="600720083413962752" href="https://twitter.com/IrssiProject" data-screen-name="IrssiProject" height="400">Tweets by @IrssiProject</a>
<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
</div>{% endif %}
</div>
</div>
</div>
{% include footer.html %}
</body>
</html>
|