-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (99 loc) · 4.94 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
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
---
layout: default
title: ArtScienceBLR a public laboratory at Srishti
---
<section class="banner">
<div class="container-fluid">
<div class="row">
<div class="no-padding col-md-12">
<div id="carousel" class="carousel slide" data-ride="carousel">
<ul class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
<li data-target="#carousel" data-slide-to="3"></li>
</ul>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="img-responsive" src="{{ site.baseurl }}/assets/img/about.jpg">
<div class="carousel-caption" style="color: black;">
(Art)ScienceBLR is a public laboratory at the Srishti Institute of Art, Design and Technology for artists and designers to engage with scientific practices.
We look at the artistic, social and political implications of technologies from computing to biotechnologies.
<br/>
<a class="btn btn-light" href="{{ site.baseurl }}/about/">Read more</a>
</div>
</div>
<div class="carousel-item">
<img src="{{ site.baseurl }}/assets/img/workshop.jpg">
<div class="carousel-caption" style="color: black;">
We conduct Open Workshops on Saturdays at (Art)ScienceBLR for students and educators. Workshops cover a variety of topics ranging from robotics to biology, sound and analog film.
<br/>
<a class="btn btn-light" href="{{ site.baseurl }}/workshops/">Read more</a>
</div>
</div>
<div class="carousel-item">
<img src="{{ site.baseurl }}/assets/img/residencynew.jpg">
<div class="carousel-caption" style="color: black;">
We host artists and scientists from both India and across the globe. We offer residents accommodation and a studio space at (Art)ScienceBLR.
<br/>
<a class="btn btn-light" href="{{ site.baseurl }}/residency/">Read more</a>
</div>
</div>
<div class="carousel-item">
<img src="{{ site.baseurl }}/assets/img/events.jpg">
<div class="carousel-caption" style="color: black;">
What's happening at (Art)ScienceBLR.
<br/>
<a class="btn btn-light" href="{{ site.baseurl }}/events/">Read more</a>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carousel" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#carousel" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="news">
<div class="container-fluid">
<div class="row">
{% for post in paginator.posts %}
<div class="col-md-5">
{% if post.image %}
<a href="{{ site.baseurl }}{{ post.url }}">
<img src="{{ site.baseurl }}{{ post.image }}" style='max-width: 320px' width=320>
</a>
{% endif %}
<br/>
<br/>
<a href="{{ site.baseurl }}{{ post.url }}"><h6>{{ post.title }}</h6></a>
<!--<p>{{ post.date | date_to_long_string }}</p>-->
<p>
{{ post.excerpt }} <a href="{{ site.baseurl }}{{ post.url }}">Read more</a>
</p>
</div>
<div class="col-md-1">
{% for category in post.categories %}
<div class="category">{{ category }}</div>
{% endfor %}
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-md-6 offset-md-2">
{% if paginator.previous_page %}
<a class='btn btn-primary' href="{{ paginator.previous_page_path }}">Newer posts</a>
{% endif %}
Page: {{ paginator.page }}
{% if paginator.next_page %}
<a class='btn btn-primary' href="{{ paginator.next_page_path }}">Older posts</a>
{% endif %}
</div>
</div>
</div>
</section>