forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (89 loc) · 3.16 KB
/
index.html
File metadata and controls
97 lines (89 loc) · 3.16 KB
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
88
89
90
91
92
93
94
95
96
97
---
layout: base
title: "Beyond Reality"
subtitle: Team
bigimg:
- "/img/gregtech.png"
- "/img/clouds.png"
- "/img/crossroads.png"
- "/img/beyondreality.png"
---
<div class="container-fluid">
<div class="row">
<div class="col-xs-5 col-md-3" style="background-color:#eaeaea;">
<!--NodeCraft-->
<div class="text-center" <h4>Our Partners</h4> </div>
<div class="item">
<a href="https://nodecraft.com/r/beyondreality">
<img src="{{ site.baseurl }}/img/community-partner.png" href="https://nodecraft.com/r/beyondreality" class="center-block" width="166" height="47">
</a>
</div>
<!-- Discord -->
<div class="text-center" <h4>Discord/Support</h4> </div>
<script type="text/javascript" src="http://discord.deliriousdrunkards.com/discord.min.js"></script>
<script type="text/javascript">
discordWidget.init({
serverId: '76745454464806912',
title: 'Beyond Reality',
join: true,
alphabetical: false,
theme: 'light',
hideChannels: ['Channel Name 1', 'Channel Name 2'],
showAllUsers: true,
allUsersDefaultState: true,
showNick: false
});
discordWidget.render();
</script>
<div class="discord-widget"></div>
<!-- Twitter -->
<div class="text-center" <h4>Tweets</h4> </div>
<div class="text-center">
<a href="https://twitter.com/dominance28" class="twitter-follow-button" data-show-count="false">Follow @dominance28</a><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<a class="twitter-timeline"
data-widget-id="647819704925581312"
href="https://twitter.com/TwitterDev"
data-chrome="noheader nofooter noborders">
Tweets by @TwitterDev
</a>
</div>
<div class="col-xs-7 col-sm-6 col-md-9">
<!--Body content-->
<div class="posts-list">
{% for post in paginator.posts %}
<article class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">
Posted on {{ post.date | date: "%B %-d, %Y" }}
</p>
<div class="post-entry">
{{ post.content | strip_html | xml_escape | truncatewords: 50 }}
<a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read More]</a>
</div>
</article>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<ul class="pager main-pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
</div>
</div>
</div>