diff options
| author | Pitu <[email protected]> | 2017-10-03 21:14:37 -0300 |
|---|---|---|
| committer | Pitu <[email protected]> | 2017-10-03 21:14:37 -0300 |
| commit | f5d0d7271a485eb693aa4d7003440aca423b7425 (patch) | |
| tree | b87dd232d21ac404912b439359a5d376d1e9ed1a | |
| parent | ES6 rewrite (diff) | |
| download | host.fuwn.me-f5d0d7271a485eb693aa4d7003440aca423b7425.tar.xz host.fuwn.me-f5d0d7271a485eb693aa4d7003440aca423b7425.zip | |
Forgot some spaces here and there
| -rw-r--r-- | pages/error/404.html | 78 | ||||
| -rw-r--r-- | pages/error/500.html | 78 | ||||
| -rw-r--r-- | views/album.handlebars | 1 |
3 files changed, 78 insertions, 79 deletions
diff --git a/pages/error/404.html b/pages/error/404.html index 1853f21..ebd49b1 100644 --- a/pages/error/404.html +++ b/pages/error/404.html @@ -1,47 +1,47 @@ <!DOCTYPE html> <html> - <head> - <title>loli-safe</title> + <head> + <title>loli-safe</title> - <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'> + <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'> - <style> - html, body { - height: 100%; - } + <style> + html, body { + height: 100%; + } - body { - margin: 0; - padding: 0; - width: 100%; - color: #B0BEC5; - display: table; - font-weight: 100; - font-family: 'Lato'; - } + body { + margin: 0; + padding: 0; + width: 100%; + color: #B0BEC5; + display: table; + font-weight: 100; + font-family: 'Lato'; + } - .container { - text-align: center; - display: table-cell; - vertical-align: middle; - } + .container { + text-align: center; + display: table-cell; + vertical-align: middle; + } - .content { - text-align: center; - display: inline-block; - } + .content { + text-align: center; + display: inline-block; + } - .title { - font-size: 72px; - margin-bottom: 40px; - } - </style> - </head> - <body> - <div class="container"> - <div class="content"> - <div class="title">Page not found.</div> - </div> - </div> - </body> -</html>
\ No newline at end of file + .title { + font-size: 72px; + margin-bottom: 40px; + } + </style> + </head> + <body> + <div class="container"> + <div class="content"> + <div class="title">Page not found.</div> + </div> + </div> + </body> +</html> diff --git a/pages/error/500.html b/pages/error/500.html index 7a21f2e..b3a1282 100644 --- a/pages/error/500.html +++ b/pages/error/500.html @@ -1,47 +1,47 @@ <!DOCTYPE html> <html> - <head> - <title>loli-safe</title> + <head> + <title>loli-safe</title> - <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'> + <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'> - <style> - html, body { - height: 100%; - } + <style> + html, body { + height: 100%; + } - body { - margin: 0; - padding: 0; - width: 100%; - color: #B0BEC5; - display: table; - font-weight: 100; - font-family: 'Lato'; - } + body { + margin: 0; + padding: 0; + width: 100%; + color: #B0BEC5; + display: table; + font-weight: 100; + font-family: 'Lato'; + } - .container { - text-align: center; - display: table-cell; - vertical-align: middle; - } + .container { + text-align: center; + display: table-cell; + vertical-align: middle; + } - .content { - text-align: center; - display: inline-block; - } + .content { + text-align: center; + display: inline-block; + } - .title { - font-size: 72px; - margin-bottom: 40px; - } - </style> - </head> - <body> - <div class="container"> - <div class="content"> - <div class="title">Internal server error.</div> - </div> - </div> - </body> -</html>
\ No newline at end of file + .title { + font-size: 72px; + margin-bottom: 40px; + } + </style> + </head> + <body> + <div class="container"> + <div class="content"> + <div class="title">Internal server error.</div> + </div> + </div> + </body> +</html> diff --git a/views/album.handlebars b/views/album.handlebars index 5f67b0b..d2a2131 100644 --- a/views/album.handlebars +++ b/views/album.handlebars @@ -36,7 +36,6 @@ <link rel="stylesheet" type="text/css" href="/css/style.css"> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.15.3/axios.min.js"></script> - <!-- <script type="text/javascript" src="/js/album.js"></script> --> </head> <body> |