-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
53 lines (51 loc) · 2.26 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
---
layout: layout
title: "Watch Out, IIT Roorkee"
---
{% include header.html %}
<div id="featured-articles-container" class="container">
<h1 class="container-title">Featured Articles</h1>
<div class="row">
<div id="featured-articles" class="col-md-8">
{% for cat in site.data.homepage_categories.featured_articles %}
{% for post in site.categories[cat] %}
{% if post.image != null %}
{% include horizontal_post.html post=post %}
{% break %}
{% endif %}
{% endfor %}
{% endfor %}
</div>
<div class="col-md-4">
<div class="fb-page" data-href="https://www.facebook.com/watchoutiitr/" data-tabs="timeline" data-width="330" data-height="540" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/watchoutiitr/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/watchoutiitr/">Watch Out! News Agency</a></blockquote></div>
</div>
</div>
</div>
<div id="yt-videos-container" class="container">
<h1 class="container-title">Videos</h1>
<div class="row">
<div class="col-md-8">
{% assign video = site.data.youtube.first %}
<div class="video-container">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" id="youtube-video-{{ video.id }}" data-id="{{ video.id }}" src="https://www.youtube.com/embed/{{ video.id }}?enablejsapi=1&showinfo=0" allowfullscreen></iframe>
</div>
</div>
<div class="video-caption" id="youtube-title-{{ video.id }}" data-id="{{ video.id }}">
<h2 class="caption">{{ video.title }}</h2>
</div>
</div> <!-- col-md-8 -->
<ul class="col-md-4 video-list">
{% for video in site.data.youtube offset: 1 limit: 4 %}
<li class="row list-video">
<a href="https://www.youtube.com/watch?v={{ video.id }}">
<div class="col-md-6 img-container">
<img class="center-both img-center-fill" src="http://img.youtube.com/vi/{{ video.id }}/mqdefault.jpg">
</div>
<div class="col-md-6 caption"><span class="center-vertical">{{ video.title }}</span></div>
</a>
</li>
{% endfor %}
</ul>
</div> <!-- row -->
</div>