-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog.html
executable file
·130 lines (124 loc) · 5.65 KB
/
blog.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
---
layout: default
title: titles.blog
---
<article id="main">
<header id="blog" class="special container">
<span class="icon fa-envelope-o"></span>
<h2><strong>Blog</strong></h2>
<p>
{% if site.lang == "it" %}
Rimani aggiornato sulla vita del Race UP team.
{% elsif site.lang == "en" %}
Stay up to date on the latest technological innovations of Race UP
team.
</p>
{% endif %}
</header>
<section class="wrapper style4 container">
<ul class="posts">
{% for post in site.posts limit:5 %}
<li class="wrapper {% if forloop.first %}style2 {% else %}style1 {% endif %}">
<h2><a href="{{ post.url }}.html">{% t post.title %}</a></h2>
<h4>{{ post.date | date: '%B %d, %Y' }}</h4>
{{ post.excerpt }}
<div class="special">
<ul class="buttons">
<li>
<a href="{{ post.url | prepend: site.baseurl }}.html"
class="button">{% if site.lang == "it" %}Leggi tutto{% elsif site.lang == "en" %}Read more{% endif %}</a></li>
</ul>
</div>
</li>
{% endfor %}
</ul>
</section>
<header id="about" class="special container">
<span class="icon fa-comments" id="about-us"></span>
<h2>
<strong>
{% if site.lang == "it" %}Dicono di noi {% elsif site.lang ==
"en" %}About us {% endif %}
</strong>
</h2>
</header>
<section class="wrapper style4 container">
<div class="row">
<div class="4u">
<h3>Varano 2017</h3>
<ul class="posts">
<li><a href="data/stampa/varano/Avvenire_6-09-2017.PDF">Avvenire (6
{% t months.sep %})</a></li>
<li><a href="data/stampa/varano/Ansa_24-07-2017.pdf">Ansa (24 {% t
months.jul %})</a></li>
<li><a href="data/stampa/varano/La_Repubblica_24-07-2017.pdf">La
Repubblica (24 {% t months.jul %})</a></li>
<li><a href="data/stampa/varano/Ansa_23-07-2017.PDF">Ansa (23 {% t
months.jul %})</a></li>
<li><a href="data/stampa/varano/Formula_Passion_23-07-2017.PDF">Formula
Passion (23 {% t months.jul %})</a></li>
<li><a href="data/stampa/varano/Sorma_17-07-2017.pdf">Sorma (17 {% t
months.jul %})</a></li>
</ul>
</div>
<div class="4u">
<h3>ZF race camp 2017</h3>
<ul class="posts">
<li>
<a href="https://www.zf.com/corporate/en_de/press/list/release/release_33346.html">ZF
(2 {% t months.jun %})</a></li>
</ul>
</div>
<div class="4u">
<h3>
{% if site.lang == "it" %}Presentazione monoposto {% elsif site.lang
== "en" %}Car launch{% endif %}
</h3>
<ul class="posts">
<li>
<a href="data/stampa/presentazione/Corriere_del_Veneto_11-05-2017.PDF">Corriere
del Veneto (11 {% t months.may %})</a></li>
<li><a href="data/stampa/presentazione/Il_Mattino_11-05-2017.PDF">Il
Mattino (11 {% t months.may %})</a></li>
<li>
<a href="data/stampa/presentazione/Il_Mattino_11-05-2017_Articolo_2.PDF">Il
Mattino bis (11 {% t months.may %})</a></li>
<li>
<a href="data/stampa/presentazione/Il_Gazzettino_11-05-2017.PDF">Il
Gazzettino (11 {% t months.may %})</a></li>
<li><a href="data/stampa/presentazione/Il_Mattino_9-05-2017.PDF">Il
Mattino (9 {% t months.may %})</a></li>
</ul>
</div>
</div>
</section>
<header id="tech" class="special container">
<span class="icon fa-cogs"></span>
<h2 ><strong>Approfondimenti</strong></h2>
<p>
{% if site.lang == "it" %}
Sei curioso di conoscere le nostre scelte tecniche? Continua a leggere!
{% elsif site.lang == "en" %}
Want to discover our technical choices? Read on!
{% endif %}
</p>
</header>
<section class="wrapper style4 container">
<ul class="posts">
{% for post in site.articles reversed %}
<li class="wrapper {% if forloop.first %}style2 {% else %}style1 {% endif %}">
<h2><a href="{{ post.url }}.html">{% t post.title %}</a></h2>
<h4>{{ post.date | date: '%B %d, %Y' }}</h4>
<div class="special">
<ul class="buttons">
<li>
<a href="{{ post.url | prepend: site.baseurl }}.html"
class="button">{% if site.lang == "it" %}Leggi tutto{% elsif site.lang == "en" %}Read more{% endif %}</a></li>
</ul>
</div>
</li>
{% endfor %}
</ul>
</section>
</article>
<script type="text/javascript" src="/js/members.js"></script>