1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-16 01:54:28 +02:00

We will go with Default theme instead of Simple theme

This commit is contained in:
Awilum
2018-12-20 02:07:32 +03:00
parent bffa632a8f
commit 29d609afdc
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<?php namespace Flextype; ?>
<?= Themes::view('partials/tail') ?>
<?php Themes::view('partials/tail')->display() ?>
<div class="powered">
Powered by <a href="http://flextype.org">Flextype</a>
</div>

View File

@@ -29,5 +29,5 @@
<?php Event::dispatch('onThemeHeader'); ?>
</head>
<body>
<?= Themes::view('partials/navigation') ?>
<?php Themes::view('partials/navigation')->display() ?>
<main role="main" class="container content">

View File

@@ -1,4 +1,4 @@
<?php namespace Flextype; ?>
<?= Themes::view('partials/head') ?>
<?php Themes::view('partials/head')->display() ?>
<?= $page['content'] ?>
<?= Themes::view('partials/footer') ?>
<?php Themes::view('partials/footer')->display() ?>