53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
require("inc/header.php");
|
|
?>
|
|
|
|
<!-- Jumbotron Header -->
|
|
<header class="jumbotron hero-spacer">
|
|
<h1>Kenneth van Ewijk</h1>
|
|
<p>Probably a picture or something here.</p>
|
|
<p><a href="/about" class="btn btn-primary btn-large"><i class="fa fa-chevron-right"></i> More about me</a>
|
|
</p>
|
|
</header>
|
|
|
|
<hr>
|
|
|
|
<?php if($connected) {
|
|
|
|
mysqli_data_seek($latest_projects, 0) ?>
|
|
|
|
<!-- Title -->
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h3>Latest Projects</h3>
|
|
</div>
|
|
</div>
|
|
<!-- /.row -->
|
|
|
|
<!-- Page Features -->
|
|
<div class="row text-center">
|
|
|
|
<?php while($row = $latest_projects->fetch_assoc()) { ?>
|
|
|
|
<div class="col-md-3 col-sm-6 hero-feature">
|
|
<div class="thumbnail">
|
|
<div class="caption">
|
|
<h3><?php echo $row['name']; ?></h3>
|
|
<p><?php echo $row['date']; ?></p>
|
|
<p>
|
|
<a href="/project/<?php echo $row['uid']; ?>" class="btn btn-default"><i class="fa fa-chevron-right"></i> More Info</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
<!-- /.row -->
|
|
|
|
<?php } ?>
|
|
|
|
<?php
|
|
require("inc/footer.php");
|
|
?>
|