Rough architecture du site
This commit is contained in:
parent
bc87220397
commit
d4be54dfe2
12 changed files with 233 additions and 0 deletions
3
site/snippets/header.php
Normal file
3
site/snippets/header.php
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<header>
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
</header>
|
||||
17
site/snippets/menu.php
Normal file
17
site/snippets/menu.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<menu>
|
||||
<li>
|
||||
<a class="menu-item-home" href="<?= page('home')->url() ?>">
|
||||
<?= page('home')->title() ?>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="menu-item-projects" href="<?= page('projects')->url() ?>">
|
||||
<?= page('projects')->title() ?>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="menu-item-about" href="<?= page('about')->url() ?>">
|
||||
<?= page('about')->title() ?>
|
||||
</a>
|
||||
</li>
|
||||
</menu>
|
||||
Loading…
Add table
Add a link
Reference in a new issue