-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
42 lines (37 loc) · 1.04 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
---
layout: page
type: home
---
<div class="row" id="about">
<div class="col-xs-12 col-md-4 order-0 order-md-1 portrait">
<img class="portrait-img" src="{{ site.url }}{{ site.baseurl }}/assets/img/new_logo.jpg" alt="Responsive image">
<div class="bg-light" id="news">
<center>
<h1><small>News</small></h1>
</center>
<br>
{% for news in site.data.news %}
{% if news.link %}
<a href="{{ news.link }}" target="_blank">
{% else %}
<a href="#">
{% endif %}
<div class="news-item">
<small class="text-secondary">[ {{ news.date }} ]</small><br>
{{ news.title }}
</div>
</a>
{% endfor %}
</div>
<br>
</div>
<div class="col-xs-12 col-md-8 order-1 order-md-0">
<div class="">
<center><h1 class="post-title display-5">Welcome to the<br>Brain and Cognitive Science Club<br>...</h1></center>
<div class="post-content">
<p>{% include about.md %}</p>
</div>
<br>
</div>
</div>
</div>