Browse Source

Add footer and header.

pull/37/head
Ned Zimmerman 7 years ago
parent
commit
3ac6e1cd21
No known key found for this signature in database
GPG Key ID: FF56334A013120CA
  1. 6
      footer.php
  2. 7
      header.php

6
footer.php

@ -0,0 +1,6 @@
</div>
<?php do_action('get_footer');
echo \Aldine\template('partials/footer');
wp_footer(); ?>
</body>
</html>

7
header.php

@ -0,0 +1,7 @@
<!doctype html>
<html <?php language_attributes(); ?>>
<?= \Aldine\template('partials/head'); ?>
<body <?php body_class(); ?>>
<?php do_action('get_header'); ?>
<?= \Aldine\template('partials/header'); ?>
<div class="wrap container" role="document">
Loading…
Cancel
Save