forked from zerostaticthemes/jekyll-serif-theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblogs.html
35 lines (33 loc) · 1.17 KB
/
blogs.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
---
title: BDSi - Behavioural Data Science incubator - Blog
layout: default
bodyClass: page-list
image: /assets/images/work-in-progress.svg
---
<div
class="intro mb-0"
style="box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
height: 25vw !important;
background-image: url({% link {{page.image}} %});
background-size: {% if page.imageNarrow %}contain{% else %}cover{% endif %};
{% if page.imageBackground %}background-color: {{page.imageBackground}};{% endif %}
background-position: center;
background-repeat: no-repeat;"
></div>
<div style="margin-top: -5vw" class="strip strip-diagonal pt-4">
<div class="container">
<h1 class="hero text-white">Behind the scenes</h1>
{% for blog in site.blogs %}
<div class="blog blog-summary pb-4">
<div class="blog-content">
<h2 class="blog-title">
<a href="{{site.baseurl}}{{ blog.url }}"
>{{ blog.title }}</a
>
</h2>
{{ blog.content | markdownify | strip_html | truncate: 250 }}
</div>
</div>
{% endfor %}
</div>
</div>