diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 2 | ||||
-rw-r--r-- | templates/photos.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html index 764f08e..4ea65e1 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <link rel="icon" href="favicon.svg" /> - <link rel="stylesheet" href="/neat.min.css" /> + <link rel="stylesheet" href="/styles.css" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta charset="utf-8" /> <title>Archive - Boutalas</title> diff --git a/templates/photos.html b/templates/photos.html index 8c55339..bad4589 100644 --- a/templates/photos.html +++ b/templates/photos.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block body %} <h1>{{ section.title }}</h1> {% for page in paginator.pages %} -<figure> +<figure class="center"> <a {% if page.content %} href="{{ page.permalink }}" {% endif %}> <img alt="{{page.extra.caption}}" |