footer: css + html
This commit is contained in:
parent
f7538454c1
commit
1ac428716a
2 changed files with 153 additions and 125 deletions
|
@ -10,18 +10,18 @@
|
||||||
|
|
||||||
@media screen {
|
@media screen {
|
||||||
#dokuwiki__footer {
|
#dokuwiki__footer {
|
||||||
* {
|
.main-footer {
|
||||||
font-size: (@font-size-default - .1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pad {
|
|
||||||
position: relative;
|
position: relative;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.doc {}
|
p {
|
||||||
|
font-size: @font-size-default;
|
||||||
|
}
|
||||||
|
|
||||||
.license {}
|
bdi {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,11 +31,13 @@
|
||||||
|
|
||||||
@media @screen_min-md {
|
@media @screen_min-md {
|
||||||
#dokuwiki__footer {
|
#dokuwiki__footer {
|
||||||
margin: 0 @margin-big;
|
|
||||||
|
|
||||||
.pad {
|
.col-xs-12 {
|
||||||
float: right;
|
float: right;
|
||||||
width: 73%;
|
width: 73%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-footer {
|
||||||
padding: @margin-default 0;
|
padding: @margin-default 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,9 +49,9 @@
|
||||||
|
|
||||||
@media @screen_max-md {
|
@media @screen_max-md {
|
||||||
#dokuwiki__footer {
|
#dokuwiki__footer {
|
||||||
.pad {
|
|
||||||
width: 100%;
|
.main-footer {
|
||||||
padding: @margin-default @margin-big;
|
padding: @margin-default (@margin-big - .5);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
252
main.php
252
main.php
|
@ -86,19 +86,19 @@ $showSidebar = page_findnearest($conf['sidebar']) && ($ACT=='show');
|
||||||
?>
|
?>
|
||||||
<body id="dokuwiki__top" class="<?php echo tpl_classes(); ?> <?php echo ($showSidebar) ? 'showSidebar' : ''; ?>">
|
<body id="dokuwiki__top" class="<?php echo tpl_classes(); ?> <?php echo ($showSidebar) ? 'showSidebar' : ''; ?>">
|
||||||
|
|
||||||
<div id="dokuwiki__site">
|
<div id="dokuwiki__site">
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* template Include: tpl/nav-direct */
|
/* template Include: tpl/nav-direct */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
?>
|
?>
|
||||||
<?php include('tpl/nav-direct.php') ?>
|
<?php include('tpl/nav-direct.php') ?>
|
||||||
|
|
||||||
|
|
||||||
<div class="page-wrapper <?php echo ($showSidebar) ? 'hasSidebar' : ''; ?>">
|
<div class="page-wrapper <?php echo ($showSidebar) ? 'hasSidebar' : ''; ?>">
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
|
@ -112,62 +112,64 @@ $showSidebar = page_findnearest($conf['sidebar']) && ($ACT=='show');
|
||||||
/* Include Hook: header.html */
|
/* Include Hook: header.html */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
tpl_includeFile('header.html');
|
tpl_includeFile('header.html');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div id="dokuwiki__header" class="header no-print">
|
<div id="dokuwiki__header" class="header no-print">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<div class="claim main-sidebar">
|
<div class="claim main-sidebar">
|
||||||
<?php if (tpl_getConf('logo') && file_exists(mediaFN(tpl_getConf('logo')))){
|
<?php if (tpl_getConf('logo') && file_exists(mediaFN(tpl_getConf('logo')))){
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* Logo */
|
/* Logo */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* upload your logo into the data/media folder (root of the media manager) and replace 'logo.png' in der template config accordingly: */
|
/* upload your logo into the data/media folder (root of the media manager) and replace 'logo.png' in der template config accordingly: */
|
||||||
include('tpl/main-sidebar-logo.php');
|
include('tpl/main-sidebar-logo.php');
|
||||||
} ?>
|
} ?>
|
||||||
<?php if ($conf['tagline']): ?>
|
<?php if ($conf['tagline']): ?>
|
||||||
<p class="claim"><?php echo $conf['tagline'] ?></p>
|
<p class="claim"><?php echo $conf['tagline'] ?></p>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
</div><!-- .headings -->
|
</div><!-- .headings -->
|
||||||
</div><!-- .col -->
|
</div><!-- .col -->
|
||||||
</div><!-- .row -->
|
</div><!-- .row -->
|
||||||
</div><!-- .container -->
|
</div><!-- .container -->
|
||||||
</div><!-- .header -->
|
</div><!-- .header -->
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* headline menu area (Accessibility ) */
|
/* headline menu area (Accessibility ) */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="sr-only nav-area-head">
|
<div class="sr-only nav-area-head">
|
||||||
<h5 class="sr-only" role="heading" aria-level="1"><?php echo tpl_getLang('nav-area-head') ?></h5>
|
<h5 class="sr-only" role="heading" aria-level="1"><?php echo tpl_getLang('nav-area-head') ?></h5>
|
||||||
</div><!-- .nav-area-head -->
|
</div><!-- .nav-area-head -->
|
||||||
<?php if ($showSidebar): ?>
|
<?php if ($showSidebar): ?>
|
||||||
|
|
||||||
<div class="tools">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-xs-12">
|
|
||||||
|
|
||||||
<div class="sidebarheader main-sidebar">
|
<div class="tools">
|
||||||
<?php
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
|
||||||
|
<div class="sidebarheader main-sidebar">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* Include Hook: sidebarheader.html */
|
/* Include Hook: sidebarheader.html */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
tpl_includeFile('sidebarheader.html') ?>
|
tpl_includeFile('sidebarheader.html')
|
||||||
|
?>
|
||||||
|
</div><!-- .sidebarheader -->
|
||||||
|
|
||||||
</div><!-- .sidebarheader -->
|
<div class="search main-sidebar">
|
||||||
|
<?php
|
||||||
<div class="search main-sidebar">
|
if (tpl_getConf('logo') && file_exists(mediaFN(tpl_getConf('logo')))){
|
||||||
<?php if (tpl_getConf('logo') && file_exists(mediaFN(tpl_getConf('logo')))){
|
|
||||||
if (tpl_getConf('logo_spacer') && file_exists(mediaFN(tpl_getConf('logo_spacer')))){
|
if (tpl_getConf('logo_spacer') && file_exists(mediaFN(tpl_getConf('logo_spacer')))){
|
||||||
echo '<img width="5" height="5" src="'.ml(tpl_getConf('logo_spacer')).'" alt="" />';
|
echo '<img width="5" height="5" src="'.ml(tpl_getConf('logo_spacer')).'" alt="" />';
|
||||||
} else{
|
} else{
|
||||||
|
@ -179,58 +181,57 @@ $showSidebar = page_findnearest($conf['sidebar']) && ($ACT=='show');
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* search form */
|
/* search form */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
include('tpl/main-sidebar-search.php'); ?>
|
include('tpl/main-sidebar-search.php');
|
||||||
|
?>
|
||||||
|
</div><!-- .search -->
|
||||||
|
|
||||||
</div><!-- .search -->
|
<div id="dokuwiki__aside" class="menu main-sidebar">
|
||||||
|
<?php
|
||||||
<div id="dokuwiki__aside" class="menu main-sidebar">
|
|
||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* main menu */
|
/* main menu */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
include('tpl/nav-main.php');
|
include('tpl/nav-main.php');
|
||||||
?>
|
?>
|
||||||
|
</div><!-- .menu -->
|
||||||
|
|
||||||
</div><!-- .menu -->
|
<div class="site-tools main-sidebar">
|
||||||
|
<?php
|
||||||
<div class="site-tools main-sidebar">
|
|
||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* site tools */
|
/* site tools */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
include('tpl/nav-sitetools.php'); ?>
|
include('tpl/nav-sitetools.php');
|
||||||
|
?>
|
||||||
</div><!-- .site-tools -->
|
</div><!-- .site-tools -->
|
||||||
|
|
||||||
|
|
||||||
<div class="sidebarfooter main-sidebar">
|
<div class="sidebarfooter main-sidebar">
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* Include Hook: sidebarfooter.html */
|
/* Include Hook: sidebarfooter.html */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
tpl_includeFile('sidebarfooter.html') ?>
|
tpl_includeFile('sidebarfooter.html')
|
||||||
|
?>
|
||||||
|
</div><!-- .sidebarheader -->
|
||||||
|
|
||||||
</div><!-- .sidebarheader -->
|
</div><!-- .col -->
|
||||||
|
</div><!-- .row -->
|
||||||
</div><!-- .col -->
|
</div><!-- .container -->
|
||||||
</div><!-- .row -->
|
</div><!-- .tools -->
|
||||||
</div><!-- .container -->
|
<?php endif ?>
|
||||||
</div><!-- .tools -->
|
|
||||||
<?php endif ?>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="top-header">
|
<div class="top-header">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
|
@ -254,93 +255,118 @@ $showSidebar = page_findnearest($conf['sidebar']) && ($ACT=='show');
|
||||||
/* Include Hook: header.html */
|
/* Include Hook: header.html */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
tpl_includeFile('header.html');
|
tpl_includeFile('header.html');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
</div><!-- .col -->
|
||||||
|
</div><!-- .row -->
|
||||||
|
</div><!-- .container -->
|
||||||
|
</div><!-- /top-header -->
|
||||||
|
|
||||||
</div><!-- .col -->
|
|
||||||
</div><!-- .row -->
|
|
||||||
</div><!-- .container -->
|
|
||||||
</div><!-- /top-header -->
|
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
|
|
||||||
<?php tpl_flush(); /* flush the output buffer */
|
<?php tpl_flush(); /* flush the output buffer */
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* Include Hook: pageheader.html */
|
/* Include Hook: pageheader.html */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
tpl_includeFile('pageheader.html')
|
tpl_includeFile('pageheader.html')
|
||||||
?>
|
?>
|
||||||
<div class="breadcrumbs">
|
|
||||||
<h6 class="sr-only" role="heading" aria-level="2"><?php echo tpl_getLang('head_menu_status') ?></h6>
|
<div class="breadcrumbs">
|
||||||
<?php
|
<h6 class="sr-only" role="heading" aria-level="2"><?php echo tpl_getLang('head_menu_status') ?></h6>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* page quality / page tasks */
|
/* page quality / page tasks */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
include('tpl/nav-page-quality-tasks.php');
|
include('tpl/nav-page-quality-tasks.php');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* breadcrumb */
|
/* breadcrumb */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
include('tpl/nav-breadcrumb.php'); ?>
|
include('tpl/nav-breadcrumb.php');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<h6 class="sr-only" role="heading" aria-level="2"><?php echo $lang['page_tools'] ?></h6>
|
||||||
|
|
||||||
<h6 class="sr-only" role="heading" aria-level="2"><?php echo $lang['page_tools'] ?></h6>
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* page tools */
|
/* page tools */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
include('tpl/nav-page-tools.php'); ?>
|
include('tpl/nav-page-tools.php');
|
||||||
</div>
|
?>
|
||||||
|
|
||||||
<div id="dokuwiki__content" class="page main-content">
|
</div>
|
||||||
|
|
||||||
<?php
|
<div id="dokuwiki__content" class="page main-content">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* wikipage start / main content */
|
/* wikipage start / main content */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
tpl_content(false); /* the main content */ ?>
|
tpl_content(false); /* the main content */
|
||||||
|
?>
|
||||||
|
|
||||||
</div><!-- .main-content -->
|
</div><!-- .main-content -->
|
||||||
|
|
||||||
</div><!-- .col -->
|
</div><!-- .col -->
|
||||||
</div><!-- .row -->
|
</div><!-- .row -->
|
||||||
</div><!-- .container -->
|
</div><!-- .container -->
|
||||||
|
|
||||||
|
|
||||||
|
<?php tpl_flush() ?>
|
||||||
|
<?php tpl_includeFile('pagefooter.html') ?>
|
||||||
|
</div><!-- /content -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="clearer"></div>
|
||||||
|
|
||||||
|
</div><!-- /wrapper -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ********** FOOTER ********** -->
|
||||||
|
|
||||||
|
<div id="dokuwiki__footer">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
|
||||||
|
<div class="main-footer">
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
|
/* 'Last modified' etc */
|
||||||
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
|
tpl_pageinfo()
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><!-- /footer -->
|
||||||
|
|
||||||
|
|
||||||
|
<?php tpl_includeFile('footer.html') ?>
|
||||||
|
</div><!-- .dokuwiki__site -->
|
||||||
|
|
||||||
<?php tpl_flush() ?>
|
<div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
|
||||||
<?php tpl_includeFile('pagefooter.html') ?>
|
|
||||||
</div></div><!-- /content -->
|
|
||||||
|
|
||||||
<div class="clearer"></div>
|
|
||||||
|
|
||||||
</div><!-- /wrapper -->
|
|
||||||
|
|
||||||
<!-- ********** FOOTER ********** -->
|
|
||||||
<div id="dokuwiki__footer"><div class="pad">
|
|
||||||
<div class="doc"><?php tpl_pageinfo() /* 'Last modified' etc */ ?></div>
|
|
||||||
<?php tpl_license('button') /* content license, parameters: img=*badge|button|0, imgonly=*0|1, return=*0|1 */ ?>
|
|
||||||
</div></div><!-- /footer -->
|
|
||||||
|
|
||||||
<?php tpl_includeFile('footer.html') ?>
|
|
||||||
</div><!-- .dokuwiki__site -->
|
|
||||||
|
|
||||||
<div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue