summaryrefslogtreecommitdiff
path: root/_layouts/index.liquid
diff options
context:
space:
mode:
authorAdam Carpenter <gitlab@53hor.net>2019-06-03 20:21:47 -0400
committerAdam Carpenter <gitlab@53hor.net>2019-06-03 20:21:47 -0400
commit775a6ea8ed0665bcb2a3de432aca80da57184424 (patch)
tree87c852cfbc4a434955d54bd6d4bcc00f3b994e9e /_layouts/index.liquid
parent5f6af7ba761eef57adc2d45634fadcdd6108bb34 (diff)
parenta2a168223078198e72dbcfa6c4d755819fe07b83 (diff)
downloadcobalt-site-775a6ea8ed0665bcb2a3de432aca80da57184424.tar.xz
cobalt-site-775a6ea8ed0665bcb2a3de432aca80da57184424.zip
Merge branch 'master' into posts
Diffstat (limited to '_layouts/index.liquid')
-rw-r--r--_layouts/index.liquid80
1 files changed, 57 insertions, 23 deletions
diff --git a/_layouts/index.liquid b/_layouts/index.liquid
index 6b53922..39c0084 100644
--- a/_layouts/index.liquid
+++ b/_layouts/index.liquid
@@ -1,21 +1,17 @@
<!DOCTYPE html>
<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">
+ {% include "head.liquid" %}
+ <link rel="stylesheet" href="/public/css/animate.css">
</head>
<body>
<!-- begin hero -->
- <section class="
- hero
- is-primary
- is-fullheight
- is-fullheight-with-navbar
- ">
+ <section class="hero
+ is-primary
+ is-fullheight
+ is-fullheight-with-navbar
+ ">
<!-- begin hero head -->
<div class="hero-head">
{% include "nav.liquid" %}
@@ -24,38 +20,76 @@
<!-- begin hero body -->
<div class="hero-body">
- <div class="container is-fluid">
+ <div class="container">
<div class="columns">
- <div class="column">
+ <div class="column is-two-fifths">
<!-- begin content -->
<div class="column">
- <h1 class="title animated fadeInLeft">
- {{ page.title }}
- </h1>
+ <p class="subtitle is-3">
+ Greetings, my name is
+ </p>
+ <p class="title is-1">
+ Adam Carpenter
+ </p>
- <div class="content animated fadeInLeft">
- {{ page.content }}
+ <div class="content">
+ <p>
+ and I am a...
+ <ul>
+ <li>
+ Computer programmer at ADP
+ </li>
+ <li>
+ Amateur Hudson driver, mechanic, and caretaker
+ </li>
+ <li>
+ Loving fiancé and puppy parent
+ </li>
+ </ul>
+ </p>
</div>
+
+ <p>
+ and this is my website.
+ </p>
+
+ <p class="has-text-centered animated jello delay-1s">
+ ↓ Keep reading below ↓
+ </p>
</div>
<!-- end content -->
</div>
<div class="column">
- <div class="box animated delay-1s fadeInRight">
- <img src="https://nextcloud.53hor.net/s/WA4MokYXXGJHf6n/preview">
+ <div class="box animated fadeIn">
+ <figure class="image">
+ <img src="https://nextcloud.53hor.net/s/JybL4rc3AQZb3Hk/preview">
+ </figure>
</div>
</div>
</div>
- </div>
+ </div>
</div>
<!-- end hero body -->
</section>
<!-- end hero -->
- {% include "footer.liquid" %}
- </body>
+ <!-- begin main content -->
+ <section class="section">
+ <div class="container">
+ <div class="content">
+ {{ page.content }}
+ </div>
+ </div>
+ </section>
+ <!-- end main content -->
+
+ <footer class="footer">
+ {% include "footer.liquid" %}
+ </footer>
+ </body>
</html>