This repository was archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathadmin.html
More file actions
41 lines (36 loc) · 1.52 KB
/
admin.html
File metadata and controls
41 lines (36 loc) · 1.52 KB
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
---
layout: default
---
<div class="home">
<h1 class="page-heading" id="wb-cont">Start here page</h1>
<p>Don't forget to bookmark this page! Starting on this page will let us remove the session from analytics, so that we know who's actually coming to the site</p>
<!--2 columns for EN and FR--> <div
<!-- Stack the columns on mobile by making one full-width and the other half-width -->
<div class="row">
<div class="col-md-6">
<h2>Blog articles</h2>
<ul class="post-list">
{% assign posts=site.posts | where:"lang", "en" %}
{% for post in posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> - <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>
<div class="col-md-6">
<h2>Articles du blogue</h2>
<ul class="post-list">
{% assign posts=site.posts | where:"lang", "fr" %}
{% for post in posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> - <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">suivre le <a href="{{ "/flux.xml" | prepend: site.baseurl }}">flux RSS</a></p>
</div>
</div>
<!--embed analytics dashboard?-->
</div>