blob: b0370381787d2330895b8e5082d7d265861825e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?php
$this->view('head', $data);
echo $this->main->link_css('css/main.css');
$legacy = $this->main->get_ie_version() <= 7;
?>
</head>
<body>
<?php if($legacy): ?>
<center>
<?php else: ?>
<div class="center">
<?php endif; ?>
<div id="header" role="banner" aria-label="banner">
<?=image('img/headerLogo', 'alt_website_logo', size: '200')?>
<div class="content">
<h1 class="logo-text">
<?=lang('first_name')?>
</h1>
<div role="navigation">
<ul id="nav">
<li><?=ilang('action_home',
href: $this->main->get_url('home'),
container: 'h2'
)?></li>
<li><?=ilang('action_projects',
href: $this->main->get_url('projects'),
container: 'h2'
)?></li>
<li><?=ilang('action_blog',
href: $this->main->get_url('blog'),
container: 'h2'
)?></li>
</ul>
</div>
</div>
</div>
<?php if($legacy): ?>
<div id="main" class="legacy" role="main">
<?php else: ?>
<div id="main" role="main" aria-label="main">
<?php endif; ?>
<div id="container">
|