main-footer.html 1.23 KB
Newer Older
Takumi Imai committed
1 2 3
<footer class="fixed-bottom bg-light">

    <nav class="d-flex justify-content-around">
4
        <!--ダッシュボード-->
5
        <a id="dashboardBottomNav" class="d-block w-100 text-center py-2 text-decoration-none text-secondary bottom-nav" href="javascript:FOOTER.goDashboard();">
Takumi Imai committed
6
            <img src="/abvw/img/dashboard/icon_dashboard_inactive.svg" data-inactive-src="/abvw/img/dashboard/icon_dashboard_inactive.svg" data-src="/abvw/img/dashboard/icon_dashboard.svg" alt="buttonDashboard" class="p-1">
Takumi Imai committed
7 8
            <div class="fs-7 multi-lang" data-msg="buttonDashboard"></div>
        </a>
9
        <!--作業一覧-->
10
        <a id="operationListBottomNav" class="d-block w-100 text-center py-2 text-decoration-none text-primary bottom-nav" href="javascript:FOOTER.goOperationList();">
Takumi Imai committed
11 12 13
            <i class="fas fa-tasks fs-14 p-1"></i>
            <div class="fs-7 multi-lang" data-msg="buttonOperationList"></div>
        </a>
14
        <!--設定-->
Takumi Imai committed
15 16 17 18 19 20 21
        <a class="d-block w-100 text-center py-2 text-decoration-none text-secondary" href="javascript:CHK_L.sendAppCommand('goSetting');">
            <i class="fas fa-cog fs-14 p-1"></i>
            <div class="fs-7 multi-lang" data-msg="buttonSetting"></div>
        </a>
    </nav>

</footer>