aboutsummaryrefslogtreecommitdiff
path: root/app/views/index.view.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2018-08-30 04:30:53 -0400
committerThedro Neely <thedroneely@gmail.com>2018-08-30 04:30:53 -0400
commit2bdcd9d9283b44e7c35822aa1317013928006fd8 (patch)
treeca2bf097e4dfcfdabba36a5cb2643560ab03b926 /app/views/index.view.php
downloadthedroneely.com-2bdcd9d9283b44e7c35822aa1317013928006fd8.tar.gz
thedroneely.com-2bdcd9d9283b44e7c35822aa1317013928006fd8.tar.bz2
thedroneely.com-2bdcd9d9283b44e7c35822aa1317013928006fd8.zip
Initialize Repo: First Commit
Diffstat (limited to 'app/views/index.view.php')
-rw-r--r--app/views/index.view.php113
1 files changed, 113 insertions, 0 deletions
diff --git a/app/views/index.view.php b/app/views/index.view.php
new file mode 100644
index 0000000..0487beb
--- /dev/null
+++ b/app/views/index.view.php
@@ -0,0 +1,113 @@
+<?php require __DIR__ . '/partials/header.php'; ?>
+
+ <body>
+
+ <section class="section hero" itemscope itemtype="http://schema.org/HomePage">
+ <div class="hero-head">
+
+ <?php require __DIR__ . '/partials/navigator.php'; ?>
+
+ </div>
+ <div class="hero-body">
+ <div class="container" style="max-width: 882px">
+ <div class="columns">
+ <div class="column is-8 has-text-left">
+ <h1 class="title"><span>Web<span class="has-text-danger"> Developer</span></span></h1>
+ <h2 class="subtitle">
+ Thedro Neely
+
+ </h2>
+ <div class="content">
+
+ <p class="has-text-left has-text-black">
+ My name is Thedro (tee-dro) &mdash; a web developer and self-taught
+ <a href="https://en.wikipedia.org/wiki/Linux">linux and unix-like</a>
+ system administrator.
+ There are many different tools and programming languages I've come across.
+ Welcome to my small part of the web. Here you'll find things I've
+ worked on as well as other interesting discoveries.
+ </p>
+
+ </div>
+
+ <div class="columns">
+ <div class="column">
+ <h3 class="subtitle has-text-greyer is-marginless">Recent Posts</h3>
+ <br>
+ <ul>
+
+ <li><a href="/post/mixing-php-into-hugo/">Mixing PHP into Hugo</a></li>
+ <li><a href="/post/now-dns-pfsense/">Now-DNS and pfSense</a></li>
+
+ <br>
+
+ <li><a class="front-frame" href="post/">More posts<span class="icon">➤</span></a></li>
+
+ </ul>
+ </div>
+
+ <div class="column">
+ <h3 class="subtitle has-text-greyer is-marginless">Recent Projects</h3>
+ <br>
+ <ul>
+
+ <li><a href="/project/personal-portfolio/">Personal Portfolio</a></li>
+ <li><a href="/project/voiceover-website/">Voiceover Website</a></li>
+
+ <br>
+
+ <li><a class="front-frame" href="project/">More projects<span class="icon">➤</span></a></li>
+ </ul>
+ </div>
+ </div>
+ </div>
+
+ <div class="column is-4 has-text-left">
+
+ <div class="tabs is-boxed" style="margin-bottom: 0;">
+ <ul>
+ <li class="is-active">
+ <a>
+ <span class="is-size-7">Activity</span>
+ </a>
+ </li>
+ <li>
+ <a style="background-color: #fff; color: #999; border: 1px solid #fff">
+ <span class="is-size-7">Status</span>
+ </a>
+ </li>
+ </ul>
+
+ </div>
+
+ <div style="background-color: #f2f2f2; padding: 10px;border: 1px solid #dbdbdb; min-height: 350px;">
+
+
+
+<div class="card">
+ <header class="card-header">
+ <p class="card-header-title is-size-7">
+ Last Github Commit
+ </p>
+ <a href="#" class="card-header-icon" aria-label="more options">
+ </a>
+ </header>
+ <div class="card-content" style="padding: 0.5rem;">
+ <div class="content is-size-7">
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec iaculis mauris.
+ </div>
+ </div>
+</div>
+
+
+
+
+ </div>
+
+ </div>
+
+ </div>
+ </div>
+ </div>
+
+<?php require __DIR__ . '/partials/footer.php'; ?>