-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (61 loc) · 3.17 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
---
layout: default
title: YOLOnerds
---
<div class="padding-10-t padding-30-r padding-0-b padding-30-l">
<p>We are <strong>YOLOnerds</strong>.</p>
<p>We are a brand new game development startup currently working on our first game.</p>
<p>Our goal is to document everything <em>"mildly difficult"</em> or interesting that we do on a daily basis. We currently focus on the web development industry, but you will find here posts on all kinds of topics.</p>
<p>Here are some basic stats about us</p>
<p>
<strong class="red">Anticipating:</strong> Cyberpunk 2077<br>
<strong class="red">Current favorite games:</strong> Witcher series<br>
<strong class="red">Technology of the month:</strong> SFML C++<br>
<strong class="red">Show of the month:</strong> Cuckoo<br>
<strong class="red">Software of the month:</strong> Azure and VisualStudio.com<br>
<strong class="red">Current favorite books:</strong> The Last Wish: Introducing The Witcher, Warcraft: the Last Guardian, Horus Heresy
</p>
</div>
<div class="padding-10-t padding-30-r padding-0-b padding-30-l">
Visit us on social media and internet
<span style="font-size: 110%;">
<a href="https://twitter.com/yolonerds" data-toggle="tooltip" title="Visit us on twitter" class="red margin-5-l"><i class="fa fa-twitter fa-2"></i></a>
<a href="https://www.youtube.com/channel/UCLlBF93AdcogI2cQNSFP5Sw" data-toggle="tooltip" title="Visit us on YouTube" class="red margin-5-l"><i class="fa fa-youtube-play fa-2"></i></a>
<a href="https://www.twitch.tv/theyolonerds" data-toggle="tooltip" title="Visit us on Twitch" class="red margin-5-l"><i class="fa fa-twitch fa-2"></i></a>
<a href="https://www.facebook.com/YOLOnerds-1038154806279058/" data-toggle="tooltip" title="Visit us on Facebook" class="red margin-5-l"><i class="fa fa-facebook fa-2"></i></a>
<a href="https://github.com/lzychowski" data-toggle="tooltip" title="Visit us on GitHub" class="red margin-5-l"><i class="fa fa-github-alt fa-2"></i></a>
<a href="https://www.instagram.com/yolonerds/" data-toggle="tooltip" title="Visit us on Instagram" class="red margin-5-l"><i class="fa fa-instagram fa-2"></i></a>
</span>
</div>
<div class="article-list-container">
<hr class="margin-20-b">
<section>
{% for post in paginator.posts %}
<article>
<a href="{{ post.url }}">
<h2>{{ post.title }}</h2>
<span class="date">{{ post.date | date: "%B %e, %Y" }}</span>
</a>
</article>
{% endfor %}
</section>
</div>
<div class="pagination-container">
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="">
<i class="fa fa-arrow-left fa-2x"></i>
</a>
{% else %}
<i class="fa fa-arrow-left fa-2x"></i><!--<span class="previous">Previous</span>-->
{% endif %}
<span class="page-number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="">
<i class="fa fa-arrow-right fa-2x"></i>>
</a>
{% else %}
<i class="fa fa-arrow-right fa-2x"></i><!--<span class="next ">Next</span>-->
{% endif %}
</div>
</div>