aboutsummaryrefslogtreecommitdiff
path: root/app/views/index.view.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-04-12 02:00:04 -0400
committerThedro Neely <thedroneely@gmail.com>2019-04-12 02:00:04 -0400
commitf375d1d08faa0b0e98792c34b5a032fa97759af5 (patch)
tree8fb83ea9f7928d05b65f2dec959cc695aa591cb6 /app/views/index.view.php
parent57bc45c39006ff52b085781df453edaba165fbec (diff)
downloadthedroneely.com-f375d1d08faa0b0e98792c34b5a032fa97759af5.tar.gz
thedroneely.com-f375d1d08faa0b0e98792c34b5a032fa97759af5.tar.bz2
thedroneely.com-f375d1d08faa0b0e98792c34b5a032fa97759af5.zip
app/views/index: Syntax
Diffstat (limited to 'app/views/index.view.php')
-rw-r--r--app/views/index.view.php32
1 files changed, 22 insertions, 10 deletions
diff --git a/app/views/index.view.php b/app/views/index.view.php
index d84b60e..c958b5f 100644
--- a/app/views/index.view.php
+++ b/app/views/index.view.php
@@ -1,8 +1,8 @@
-<?php require __DIR__ . '/partials/header.php'; ?>
+<?php require __DIR__ . '/partials/header.php';?>
<body>
-<?php require __DIR__ . '/partials/navigator.php'; ?>
+<?php require __DIR__ . '/partials/navigator.php';?>
<section class="section" itemscope itemtype="http://schema.org/HomePage">
@@ -23,7 +23,13 @@
In it for the long haul
</h2>
- <img alt="Mountains" width="960" height="480" src="/images/mountains.jpg">
+ <img alt="Mountains" src="/images/mountains.jpg"
+ width="<?php echo getimagesize(
+ $_SERVER['DOCUMENT_ROOT'] . '/images/mountains.jpg'
+ )[0]; ?>"
+ height="<?php echo getimagesize(
+ $_SERVER['DOCUMENT_ROOT'] . '/images/mountains.jpg'
+ )[1]; ?>" >
<div class="content">
@@ -46,15 +52,18 @@
<?php
$recentPosts = new DOMExtract();
- $recentPosts->setSource($_SERVER['DOCUMENT_ROOT'] . '/post/index.html');
+ $recentPosts->setSource($_SERVER['DOCUMENT_ROOT'] . '/posts/index.html');
echo $recentPosts->getInnerHTML('recent-article');
?>
<a href="/post/"
class="front__more is-block has-text-right has-text-centered-mobile">
See All Posts
- <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
- . '/..' . '/public/css/fonts/feather-icons/chevron-right.svg') ?>
+ <?php echo file_get_contents(
+ $_SERVER['DOCUMENT_ROOT']
+ . '/..'
+ . '/public/css/fonts/feather-icons/chevron-right.svg'
+ ); ?>
</a>
<br>
@@ -63,7 +72,7 @@
<?php
$recentProjects = new DOMExtract();
- $recentProjects->setSource($_SERVER['DOCUMENT_ROOT'] . '/project/index.html');
+ $recentProjects->setSource($_SERVER['DOCUMENT_ROOT'] . '/projects/index.html');
echo $recentProjects->getInnerHTML('recent-article');
?>
</div>
@@ -71,8 +80,11 @@
<a href="/project/"
class="front__more is-block has-text-right has-text-centered-mobile">
See All Projects
- <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
- . '/..' . '/public/css/fonts/feather-icons/chevron-right.svg') ?>
+ <?php echo file_get_contents(
+ $_SERVER['DOCUMENT_ROOT']
+ . '/..'
+ . '/public/css/fonts/feather-icons/chevron-right.svg'
+ ); ?>
</a>
<br>
@@ -83,7 +95,7 @@
</section>
-<?php require __DIR__ . '/partials/footer.php'; ?>
+<?php require __DIR__ . '/partials/footer.php';?>
</body>
</html>