all repos — pakuauk @ e6905ddf5e496f50e19fabcc317c440feb805cbe

template/footer.php (view raw)

 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
<?php

global $SOCIAL;
global $RESOURCES;
global $CONTACT;
global $SITE;

?>
</main>

    <footer class="p-author h-card vcard">
        <section>
            <div>
                <h3>Pa-Kua Resources</h3>
                <ul>
                    <?php foreach($RESOURCES as $e) { ?>
                    <li><a href="<?php echo($e['url']); ?>"><?php echo($e['title']); ?></a></li>
                    <?php } ?>
                </ul>
            </div>

            <div>
                <h3>Contact</h3>
                <ul>
                    <?php foreach($CONTACT as $e) { ?>
                    <li><a href="<?php echo($e['url']); ?>"><?php echo($e['title']); ?></a></li>
                    <?php } ?>
                </ul>
            </div>

            <div>
                <a href="https://pakuauk.com">
                    <svg class="u-photo photo" width="381" height="138"><use xlink:href="#pakua-logo-white" /></svg>
                </a>

                <nav>
                    <ul>
                        <?php foreach($SOCIAL as $e) { ?>
                        <li>
                            <a href="<?php echo($e['url']); ?>" rel="me">
                                <svg width="48" height="48"><use xlink:href="#icon-<?php echo($e['name']);?>" /></svg>
                            </a>
                        </li>
                    <?php } ?>
                    </ul>
                </nav>
            </div>
        </section>
        <section><p>© 2008-2019 by <a href="<?php echo($SITE['url']); ?>" class="p-name u-url fn url" rel="me"><?php echo($SITE['headline']); ?></a></p></section>
    </footer>
    <?php include('symbols.svg'); ?>
</body></html>