summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-08-23 21:33:42 +0200
committerJules Laplace <julescarbon@gmail.com>2021-08-23 21:33:42 +0200
commita05d52a7b13607181ce0443b17769bb02532dfc1 (patch)
treef5c4722363f29a610d1a4f95efbd9351999083f6 /templates
parent5ddde1cbb70bf4bc2df127fced5afb966069d299 (diff)
importing rtf
Diffstat (limited to 'templates')
-rw-r--r--templates/_header.liquid1
-rw-r--r--templates/home.liquid2
-rw-r--r--templates/review.liquid15
3 files changed, 18 insertions, 0 deletions
diff --git a/templates/_header.liquid b/templates/_header.liquid
index 372299b..349ab58 100644
--- a/templates/_header.liquid
+++ b/templates/_header.liquid
@@ -31,6 +31,7 @@
<link rel="stylesheet" href="/assets/css/flickity.css">
<link rel="stylesheet" href="/assets/css/ionicons.css">
<link rel="stylesheet" href="/assets/css/fonts.css">
+ <link rel="stylesheet" href="/assets/css/css.css">
</head>
diff --git a/templates/home.liquid b/templates/home.liquid
index b61dfb5..084ca6e 100644
--- a/templates/home.liquid
+++ b/templates/home.liquid
@@ -2,4 +2,6 @@
<div id="graph"></div>
+<div id="app"></div>
+
{% include "_footer" %}
diff --git a/templates/review.liquid b/templates/review.liquid
new file mode 100644
index 0000000..acbb62f
--- /dev/null
+++ b/templates/review.liquid
@@ -0,0 +1,15 @@
+{% include "_header" %}
+
+{% for p in pages %}
+ <div style="border: 1px solid #ddd; margin: 10px; padding: 0 10px">
+ <h2>[{{forloop.index}}] {{p.title}}</h2>
+ <h3>{{p.author}}</h3>
+ <p>
+ <tt>{{p.citation}}</tt>
+ </p>
+ {{p.description}}
+ </div>
+{% endfor %}
+
+
+{% include "_footer" %}