-
Notifications
You must be signed in to change notification settings - Fork 246
/
Copy pathsugar-stories.html
executable file
·39 lines (36 loc) · 1.19 KB
/
sugar-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
---
layout: default
title: Sugar Stories - Sugar Labs
permalink: /sugar-stories/index.html
---
<!-- Title section -->
<div class="section-title1">
<span class="tag tag-regular">SUGAR STORIES</span>
</div>
<!-- "Sugar Stories" section -->
<section id="intro">
<div class="container mt-5 my-2">
<div class="border-bottom pb-3 mb-3">
<ol id="postList">
{% for post in site.categories.stories limit:5 %}
<li class="listFont">
<a href="{{ post.url }}">{{ post.title }}</a>
<i style="display: block;">{{ post.date | date: "%b %-d %Y" }}</i>
<i class="display:block;">By {{ post.author | default: "Sugar Community Member" }}</i>
<hr>
</li>
{% endfor %}
</ol>
</div>
</div>
</section>
<!-- "Return to main page" button section -->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-md-12" >
<a href="{{ site.baseurl }}/" ><button type="button" class="btn bt-raised btn-custom bt lastButtonMargin" >Return to main page</button></a>
</div>
</div>
</div>
</section>