-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (56 loc) · 2.02 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
---
layout: default
---
<section class="container-fluid">
<div class="row">
<div class="col-md-12 hero" style="background: url('/assets/img/bild_2a_satt_rausch.jpg') no-repeat; height: 666px;">
<div class="hero-action">
<a class="btn btn-isro" href="/workshop.html">Workshops</a>
<a class="btn btn-isro" href="/about.html">About</a>
<span class="top-left">Indian</span>
<span class="top-right">Sonic</span>
<span class="bottom-right">Research</span>
<span class="bottom-left">Organisation</span>
</div>
</div>
</div>
<div class="container">
{% for post in paginator.posts %}
<div class="row">
<div class="post-heading col-md-12 text-center">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="container-fluid">
<div class="row post-box">
<div class="col-md-7 post-image">
<img class="mw-100" src="{{ site.baseurl }}{{ post.image }}" width=640>
</div>
<div class="col-md-5 post-text">
<h3 class="post-title">
{{ post.title }}
</h3>
<p>{{ post.excerpt }}</p>
<p><a href="{{ site.baseurl }}{{ post.url }}">read more</a></p>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="row text-center">
<div class="col-md-12">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}"><</a>
{% endif %}
{{ paginator.page }}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}">></a>
{% endif %}
</div>
</div>
</div>
</section>