-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.html
130 lines (124 loc) · 4.15 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
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
---
layout: default
---
<div class="breadcrumbs-container">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">
{% t lab-name %}
</h1>
</div>
</div>
</div>
</div>
<div class="breadcrumbs-container home-banner-large">
<div class="container home-banner-xs">
<!-- Marketing Icons Section -->
{%- capture home_assets -%}/assets/pictures/home/{%- endcapture -%}
{%- for f in site.static_files -%}
{%- assign f_base = f.path | remove_first: home_assets -%}
{%- if f_base != f.path -%}
{%- if carousel_files -%}
{%- capture carousel_files -%}{{carousel_files}},{{site.baseurl_root}}{{f.path}}{%- endcapture -%}
{%- else -%}
{%- capture carousel_files -%}{{site.baseurl_root}}{{f.path}}{%- endcapture -%}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- assign carousel_files = carousel_files | split: "," -%}
{%- assign carousel_files_size = carousel_files | size -%}
<div class="row">
<div class="col-md-8 col-xs-8 col-md-offset-2 col-xs-offset-2">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
{%- if carousel_files_size != 1 -%}
<!-- Indicators -->
<ol class="carousel-indicators">
{%- for f in carousel_files -%}
{%- if forloop.index0 == 0 -%}
<li data-target="#carousel-example-generic" data-slide-to="{{forloop.index0}}" class="active"></li>
{%- else -%}
<li data-target="#carousel-example-generic" data-slide-to="{{forloop.index0}}"></li>
{%- endif -%}
{%- endfor -%}
</ol>
{%- endif -%}
<!-- Wrapper for slides -->
<div class="carousel-inner">
{%- for f in carousel_files -%}
{%- if forloop.index0 == 0 -%}
{%- assign class = "item active" -%}
{%- else -%}
{%- assign class = "item" -%}
{%- endif -%}
<div class="{{class}}">
<img class="img-responsive img-rounded" src="{{f}}" alt="carousel {{forloop.index}}">
</div>
{%- endfor -%}
</div>
</div>
</div>
<div align="right" style="padding-right:20px;">
<table>
<tbody>
<tr>
<td style="padding-bottom:10px">
<a href="https://github.com/jrl-umi3218/">
<img src="{{site.baseurl_root}}/assets/icons/GitHub-Mark-Light-64px.png" width="40" alt="GitHub">
</a>
</td>
</tr>
<tr>
<td style="padding-bottom:10px">
<a href="https://www.youtube.com/channel/UCYwHCdMHAKYZJ2MQIoTavVQ">
<img src="{{site.baseurl_root}}/assets/icons/yt_icon_rgb.png" width="40" alt="YouTube Channel">
</a>
</td>
</tr>
<tr>
<td style="padding-bottom:10px">
<a href="https://jrl-umi3218.github.io/mc_rtc/">
<img src="{{site.baseurl_root}}/assets/icons/mc_rtc.png" width="40" alt="mc-rtc">
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- Page Content -->
<div class="container">
<div class="row" style="margin-top:25px;">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h4>{% t index.overview %}</h4>
</div>
<div class="panel-body">
{% translate_file index-overview.html %}
</div>
</div>
</div>
</div>
<!-- /.row -->
<!-- Projects Section -->
<div class="row row-centered">
<div class="col-lg-12 col-centered">
<h2 class="page-header">{% t index.projects %}</h2>
</div>
{%- assign sorted_projects = site.data.projects | sort: 'id' -%}
{%- for project in sorted_projects -%}
{%- if project.active == true -%}
<div class="col-md-3 col-xs-6 col-centered">
<a href="{{site.baseurl}}/projects/project-{{project.id}}.html" data-toggle="tooltip" title="{{project.title}} - {{project.longtitle}}">
<img class="img-responsive img-portfolio img-hover" src="{{site.baseurl_root}}/assets/projects/{{project.id}}.png" alt="{{project.title}} - {{project.longtitle}}">
</a>
</div>
{%- endif -%}
{%- endfor -%}
</div>
<!-- /.row -->
</div>
<!-- /.container -->