wp-73k/front-page.php

40 lines
1.1 KiB
PHP
Raw Normal View History

2021-07-06 14:57:45 -04:00
<?php
/**
* The default single page template.
*
* @author Freeshifter LLC
* @since 1.0.0
*/
namespace WP_73k;
2021-07-06 23:31:20 -04:00
get_header('', array('fixednav'=>true)); ?>
<main class="container-fluid h-100 d-flex justify-content-center align-items-center">
2021-07-06 14:57:45 -04:00
<div class="d-flex flex-column-reverse flex-lg-row align-items-lg-end mt-5">
<div class="col-auto mt-3 mt-lg-0">
<img src="<?php echo get_stylesheet_directory_uri() . '/dist/images/cat-roof_portrait.webp'; ?>"
2021-07-06 14:57:45 -04:00
class="img-fluid border border-20 border-gray-900 rounded-2"
alt="My cat Babka, stuck on a roof when she was still just a stray."
title="My cat Babka, stuck on a roof when she was still just a stray."
/>
</div>
<div class="col-auto justify-content-start ms-lg-3">
<h2 class="fs-2 fw-600 mb-0">
2021-07-07 15:47:48 -04:00
<?php echo svg_icon_use("mdi-account", "icon baseline") . ' <span>Adam Piontek</span>'; ?>
2021-07-06 14:57:45 -04:00
</h2>
<div class="font-monospace text-gray-300 fs-5">Desktop Systems Engineer. Human.</div>
<?php echo socials_str(socials()); ?>
</div>
</div>
</main>
<?php
get_footer();