aboutsummaryrefslogtreecommitdiff
path: root/views/partials/navigator.php
blob: 0d5539b14340da5c415e511c7486fbf9a5d72bc0 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<nav class="flex -mx-2">

    <div class="w-1/5 px-2 text-center">


            <a class="inline-block text-gray-700 hover:text-gray-900 no-underline
            font-bold tracking-widest uppercase text-xs pb-1" href="/" title="Home">
            <div class="text-center">
                <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
                    . '/..'
                    . '/public/icons/feathericons/user.svg') ?>
                    <p class="py-1
                    <?php echo $navigation->isActiveHome() ?? 'text-gray-700' ?> hover:text-gray-900">
                    Home
                    </p>
                </div>
            </a>

    </div>

<div class="w-1/5 px-2 text-center">


        <a class="inline-block text-gray-700 hover:text-gray-900 no-underline
        font-bold tracking-wide uppercase text-xs pb-1" href="/posts/" title="Home">
        <div class="text-center">
            <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
                . '/..'
                . '/public/icons/feathericons/book-open.svg') ?>
                <p class="py-1
                <?php echo $navigation->isActive('/posts/') ?? 'text-gray-700' ?> hover:text-gray-900">
                Journal
                </p>
            </div>
        </a>

</div>

<div class="w-1/5 px-2 text-center">



        <a class="inline-block text-gray-700 hover:text-gray-900 no-underline
        font-bold tracking-wide uppercase text-xs pb-1" href="/wall/" title="Wall">
        <div class="text-center">
            <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
                . '/..'
                . '/public/icons/feathericons/message-square.svg') ?>
                <p class="py-1
                <?php echo $navigation->isActive('/wall/') ?? 'text-gray-700' ?> hover:text-gray-900">
                Wall
                </p>
            </div>
        </a>


</div>

<div class="w-1/5 px-2 text-center">


        <a class="inline-block text-gray-700 hover:text-gray-900 no-underline
        font-bold tracking-wide uppercase text-xs pb-1" href="/about/" title="About">
        <div class="text-center">
            <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
                . '/..'
                . '/public/icons/feathericons/help-circle.svg') ?>
                <p class="py-1
                <?php echo $navigation->isActive('/about/') ?? 'text-gray-700' ?> hover:text-gray-900">
                About
                </p>
            </div>
        </a>


</div>

<div class="w-1/5 px-2 text-center">



        <a class="inline-block text-gray-700 hover:text-gray-900 no-underline
        font-bold tracking-wide uppercase text-xs pb-1" href="/contact/" title="Contact">
        <div class="text-center">
            <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
                . '/..'
                . '/public/icons/feathericons/mail.svg') ?>
                <p class="py-1
                <?php echo $navigation->isActive('/contact/') ?? 'text-gray-700' ?> hover:text-gray-900">
                Contact
                </p>
            </div>
        </a>


</div>

</nav>