forked from artemsheludko/flexible-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·25 lines (22 loc) · 1.33 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
---
layout: main
---
{% for post in paginator.posts %}
<article class="post">
{% if post.img %}
<a class="post-thumbnail" style="background-image: url({{"/assets/img/" | prepend: site.baseurl | append : post.img}})" href="{{post.url | prepend: site.baseurl}}"></a>
{% else %}
{% endif %}
<div class="post-content">
<h2 class="post-title"><a href="{{post.url | prepend: site.baseurl}}">{{post.title}}</a></h2>
<!-- <p>{{ post.content | strip_html | truncatewords: 15 }}</p> -->
<p>{{ post.description }}</p>
<!-- <span class="post-date">Event date: {{post.date | date: '%a, %b %d'}}</span>
<span class="post-words">{% capture words %}{{ post.content | number_of_words }}{% endcapture %}{% unless words contains "-" %}{{ words | plus: 250 | divided_by: 250 | append: " minute read" }}{% endunless %}</span> -->
</div>
</article>
{% endfor %}
{% include pagination.html %}
{% include logos-footer.html %}
<!--mailchimp pop up-->
<script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script><script type="text/javascript">window.dojoRequire(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us4.list-manage.com","uuid":"ad086bf6f4bd17869249056f8","lid":"1b847ea0a4","uniqueMethods":true}) })</script>