Up-to-date
This commit is contained in:
parent
98ea090b9f
commit
1958efe40f
10 changed files with 185 additions and 100 deletions
|
@ -13,13 +13,18 @@
|
|||
|
||||
get_header(); ?>
|
||||
|
||||
<script>
|
||||
var openingMessage = "This website is still a work-in-progress. Things may look janky or broken entirely, particularly in browsers that aren't Firefox. Sorry about that.";
|
||||
openingMessage += "\n\nFirefox: ✓ (should be)";
|
||||
openingMessage += "\nChrome, Opera, etc.: varies";
|
||||
openingMessage += "\nInternet Explorer: Unlikely until Microsoft make a real browser";
|
||||
|
||||
alert(openingMessage);
|
||||
</script>
|
||||
<div id="content" class="site-content">
|
||||
<main id="main" class="site-main wrapper-home" role="main">
|
||||
<img id="main-background" src="<?php the_post_thumbnail_url(); ?>);">
|
||||
<?php
|
||||
// Start the loop.
|
||||
while ( have_posts() ) : the_post();
|
||||
?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
<header class="row" id="header-row">
|
||||
<div class="col-m-3">
|
||||
<div id="frontpage-img-wrapper">
|
||||
|
@ -34,21 +39,18 @@ get_header(); ?>
|
|||
<a href="bitcoin:1HApEg2robrRCx4rTKKeFj25unoaX65QUc"><i class="fa fa-btc"></i></a> ~
|
||||
<a href="https://uk.linkedin.com/in/rumperuu"><i class="fa fa-linkedin"></i></a> ~
|
||||
<a href="https://github.com/Rumperuu"><i class="fa fa-github"></i></a> ~
|
||||
<a href="/pub.asc"><i class="fa fa-key"></i> 30D22F41</a>
|
||||
<a href="/pub.asc"><i class="fa fa-key"></i> 0x30D22F41</a>
|
||||
~
|
||||
</h2>
|
||||
</div>
|
||||
</header>
|
||||
<div class="row">
|
||||
<div class="col-1" style="visibility: hidden;">.</div>
|
||||
<div class="col-5" id="intro-text">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
</h2>
|
||||
</div>
|
||||
<?php
|
||||
endwhile;
|
||||
?>
|
||||
|
||||
</header>
|
||||
<div class="row">
|
||||
<div class="col-1" style="visibility: hidden;">.</div>
|
||||
<div class="col-5 tile" id="intro-text">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endwhile; ?>
|
||||
</main><!-- .site-main -->
|
||||
|
||||
<?php get_sidebar( 'content-bottom' ); ?>
|
||||
|
|
Reference in a new issue