forked from sugarlabs/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
executable file
·30 lines (27 loc) · 867 Bytes
/
post.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
---
layout: default
---
<div class="bg-dark text-white py-4">
<div class="container text-center">
<h1 class="display-4 mb-0">{{ page.title }}</h1>
<p class="lead">{{ page.date | date: "%b %-d %Y" }}</p>
<p class="lead">By {{ page.author | default: "Sugar Community Member" }}</p>
</div>
</div>
<!-- Content Section -->
<div class="container my-5">
<div class="bg-white p-4 rounded shadow-sm">
{{ content }}
</div>
</div>
<!-- Footer Section with Links -->
<div class="bg-light py-4">
<div class="container text-center">
<p class="mb-2">
<a href="/press" class="btn btn-outline-secondary btn-sm text-decoration-none">Return to press information</a>
</p>
<p>
<a href="/" class="btn btn-outline-secondary btn-sm text-decoration-none">Return to main page</a>
</p>
</div>
</div>