Structure initiale

This commit is contained in:
Pierre Martin
2021-03-19 12:29:11 +01:00
commit e0ac6488eb
17 changed files with 8092 additions and 0 deletions

15
src/_includes/base.html Normal file
View File

@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Its (j)ust (e)leventy and (t)ailwind … OK, and a few other things; its still really small though.">
<title>{{ title }}</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body class="font-sans">
<main>
{{ content | safe }}
</main>
</body>
</html>

26
src/changelog.html Normal file
View File

@@ -0,0 +1,26 @@
---
layout: base.html
title: Changelog - Sans.pub
---
<div class="max-w-lg mx-auto mt-20 px-4">
<h1 class="font-semibold text-6xl mb-6">Changelog</h1>
<p class="text-gray-500">
Nouveautés, mises à jour et améliorations apportées à Sans.pub
</p>
<p class="text-xs underline mt-2">
<a href="/">&lt; Retourner à l'accueil</a>
</p>
</div>
{%- for changelog in collections.changelog -%}
<hr class="w-11/12 border-gray-200 mx-auto my-16" />
<div class="max-w-lg mt-6 mx-auto">
<h2 class="text-3xl">{{ changelog.data.title }}</h2>
<p class="mb-6 text-gray-500 text-sm font-extralight">
{{changelog.data.date | readableDate}}
</p>
{{changelog.templateContent}}
</div>
{%- endfor -%}

View File

@@ -0,0 +1,25 @@
---
title: Mises à jour et nouveau site
date: 2021-03-19
permalink: false
---
## Nouveau site
C'est chose faite : sans.pub a un nouveau site !
## Mises à jour
Les logiciels suivants ont été mis à jour :
### Nextcloud 21
La version 21 est la dernière version de l'outil.\
Elle améliore les performances générales, vous devriez voir une navigation plus rapide dans vos dossiers.
Cette version ajoute également de nouvelles fonctionnalités collaboratives.\
Un tableau blanc vous permet de collaborer.\
Les fichiers textes permettent une meilleure édition collaborative, notamment par l'utilisation de couleurs afin de déterminer qui a effectué des modifications.\
Cela se rapproche encore un peu plus des [Pads](https://pad.sans.pub/) que vous connaissez.
[Voir plus de détails](https://www.cachem.fr/nextcloud-21-disponible/)

View File

@@ -0,0 +1,3 @@
{
"tags": ["changelog"]
}

5
src/css/tailwind.css Normal file
View File

@@ -0,0 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

22
src/index.html Normal file

File diff suppressed because one or more lines are too long