-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathcommunity-stories.html
48 lines (44 loc) · 1.55 KB
/
community-stories.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
---
layout: default
title: Community Stories
permalink: /community-stories
body-class: blog
background-class: comm-stories-background
---
<div class="jumbotron jumbotron-fluid contributor-jumbotron">
<div class="contributor-jumbo-text container">
<h1>Community Stories</h1>
<p class="lead">Read case studies on how our community solves real, everyday machine learning problems with PyTorch</p>
</div>
</div>
<div class="main-content-wrapper">
<div class="main-content">
<div class="container">
<div class="row blog-vertical">
{% assign community_stories = site.community_stories | sort_natural: "date" | reverse %}
{% for post in community_stories %}
<div class="vertical-blog-container">
<div class="col-md-4">
<p class="blog-date">{{ post.date | date: '%B %d, %Y' }}</p>
<h4>
<a href="{{ post.ext_url }}">{{ post.title }}</a>
</h4>
<p class="post-tags">
{% if post.tags %}
<strong>Industry: </strong>
{% for tag in post.tags %}
<span class="tag">{{ tag }}{% unless forloop.last %}, {% endunless %}</span>
{% endfor %}
{% endif %}
</p>
<p>{{ post.excerpt | strip_html | truncate: 500}}</p>
</div>
<a href="{{ post.ext_url }}" class="btn btn-lg with-right-arrow">
Read More
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>