diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/index.liquid | 29 | ||||
-rw-r--r-- | _layouts/page.liquid | 1 | ||||
-rw-r--r-- | _layouts/post.liquid | 1 |
3 files changed, 22 insertions, 9 deletions
diff --git a/_layouts/index.liquid b/_layouts/index.liquid index 44feff5..6b53922 100644 --- a/_layouts/index.liquid +++ b/_layouts/index.liquid @@ -2,6 +2,7 @@ <html> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ page.title }}</title> <link rel="stylesheet" href="/bulma.css"> <link rel="stylesheet" href="/animate.css"> @@ -24,20 +25,30 @@ <!-- begin hero body --> <div class="hero-body"> <div class="container is-fluid"> + <div class="columns"> + <div class="column"> - <!-- begin content --> - <div class="column"> - <h1 class="title animated flipInX"> - {{ page.title }} - </h1> + <!-- begin content --> + <div class="column"> + <h1 class="title animated fadeInLeft"> + {{ page.title }} + </h1> - <div class="content animated flipInX"> - {{ page.content }} + <div class="content animated fadeInLeft"> + {{ page.content }} + </div> + </div> + <!-- end content --> + + </div> + <div class="column"> + <div class="box animated delay-1s fadeInRight"> + <img src="https://nextcloud.53hor.net/s/WA4MokYXXGJHf6n/preview"> + </div> </div> </div> - <!-- end content --> - </div> + </div> <!-- end hero body --> diff --git a/_layouts/page.liquid b/_layouts/page.liquid index ebb3c7d..b97dc7e 100644 --- a/_layouts/page.liquid +++ b/_layouts/page.liquid @@ -2,6 +2,7 @@ <html> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ page.title }}</title> <link rel="stylesheet" href="/bulma.css"> </head> diff --git a/_layouts/post.liquid b/_layouts/post.liquid index 6c90a7e..54bf211 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -2,6 +2,7 @@ <html> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ page.title }}</title> <link rel="stylesheet" href="/bulma.css"> </head> |