# wt-security/2.1.8/includes/layout.php

WebTotem Security, version 2.1.8. 99 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.1.8/code/includes/layout.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.1.8/raw/includes/layout.php
- Modified: 2020-08-04T11:33:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wt-security/2.1.8/code/includes/layout.php#L10-L20`.

```php
<div>
    <div class="wtotem_body">
        <div class="wtotem_header wt_card">
            <div class="wtotem_container">
                <div class="wtotem_header__body">
                    <div class="wtotem_version">
                        <div class="wtotem_logo"></div>
                        <span class="wtotem_version__count">
                                    2.0
                                </span>
                    </div>
                    <div class="wtotem_burger">
                        <span class="wtotem_burger__middle-line"></span>
                    </div>
                    <nav class="wtotem_nav">
                        <ul class="wtotem_nav__menu">
                            <li class="wtotem_nav__item">
                                <a href="<?=wtsec_getUrl("dashboard")?>" class="wtotem_nav__link <?= wtsec_isActivePage("dashboard") ?>">
                                    <?= wtsec_locale("dashboard") ?>
                                </a>
                            </li>
                            <li class="wtotem_nav__item">
                                <a href="<?=wtsec_getUrl("waf")?>" class="wtotem_nav__link <?= wtsec_isActivePage("waf") ?>">
                                    <?= wtsec_locale("firewall") ?>
                                </a>
                            </li>
                            <li class="wtotem_nav__item">
                                <a href="<?=wtsec_getUrl("vc")?>" class="wtotem_nav__link <?= wtsec_isActivePage("vc") ?>">
                                    <?= wtsec_locale("remote_antivirus") ?>
                                </a>
                            </li>
                        </ul>
                    </nav>
                </div>
            </div>
        </div>
            <div class="wtotem_content" style="padding:1px">
                <div class="wtotem_container">
                    <?php WTSEC_LIBRARY_Session::notifications() ?>
                </div>
            </div>
            <?php include $body;?>

        <div class="wtotem_footer">
            <div class="wtotem_container">
                <div class="wtotem_footer__first">
                    <div class="wtotem_footer__caption">
                        <div class="wtotem_footer__logo"></div>
                        <p class="wtotem_footer__text">
                            <?= wtsec_locale("your_best_friend") ?>
                        </p>
                    </div>
                </div>

                <div class="wtotem_footer__line"></div>

                <div class="wtotem_footer__bottom">
                    <div class="wtotem_footer__left">
                        <p class="wtotem_footer__text">
                            © 2017-2020 <?= wtsec_locale("all_right_reserved") ?>
                        </p>
                        <a target="_blank" href="https://apps.apple.com/us/app/webtotem/id1289069562" class="wtotem_footer__store">
                            <div class="wtotem_footer__app-store"></div>
                        </a>
                        <a target="_blank" href="https://play.google.com/store/apps/details?id=com.indepo.webtotem" class="wtotem_footer__store">
                            <div class="wtotem_footer__play-store"></div>
                        </a>
                    </div>
                    <div class="wtotem_footer__soc">
                        <a target="_blank" href="https://www.facebook.com/webtotem" class="wtotem_footer__soc-link">
                            <img src="<?=wtsec_getImagePath("fc.svg")?>" alt="Facebook icon" />
                        </a>
                        <a target="_blank" href="https://www.linkedin.com/company/wtotem/" class="wtotem_footer__soc-link">
                            <img src="<?=wtsec_getImagePath("lk.svg")?>" alt="Linkedin icon" />
                        </a>
                        <a target="_blank" href="https://www.youtube.com/channel/UCD-n_NIXTOmw4Nm-LcmW1XA/featured" class="wtotem_footer__soc-link">
                            <img src="<?=wtsec_getImagePath("youtube.svg")?>" alt="Youtube icon" />
                        </a>
                    </div>
                    <div class="wtotem_footer__payment">
                        <img class="wtotem_footer__card wtotem_footer__card_visa" src="<?=wtsec_getImagePath("visa.svg")?>" alt="Visa"/>
                        <img class="wtotem_footer__card wtotem_footer__card_master" src="<?=wtsec_getImagePath("master-card.svg")?>" alt="Master wt_card"/>
                        <img class="wtotem_footer__card wtotem_footer__card_payPal" src="<?=wtsec_getImagePath("paypal.svg")?>" alt="PayPal"/>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<style>
    /* wp default styles override*/

    #wpcontent{
        padding:0!important;
    }

    /* wp default styles override*/
</style>

```
