diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/_header.liquid | 1 | ||||
| -rw-r--r-- | templates/home.liquid | 2 | ||||
| -rw-r--r-- | templates/review.liquid | 15 |
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" %} |
