feedback implemented
This commit is contained in:
@@ -1,136 +1,137 @@
|
||||
<?php
|
||||
|
||||
include(get_theme_file_path('/includes/front-end/menu_data.php'));
|
||||
require_once(get_theme_file_path('/includes/back-end/helper_functions.php'));
|
||||
|
||||
?>
|
||||
|
||||
<!-- Header -->
|
||||
<section id="header-nav" class="w-full absolute bg-blue-500 top-0 z-50">
|
||||
<header class="flex items-center justify-between text-center px-4 py-2 space-x-2 lg:space-x-8 bg-blue-800">
|
||||
|
||||
<!-- Header Logo -->
|
||||
<a class="relative z-50 flex items-center space-x-4" href="<?php echo get_site_url(); ?>">
|
||||
<img width="40px" src="<?php echo get_template_directory_uri(); ?>/assets/images/logos/header__logo.png" alt="NAN Logo">
|
||||
<h1 class="font-bold hidden lg:flex text-white text-2xl">NAN Student Handbook</h1>
|
||||
</a>
|
||||
|
||||
<!-- Header Search -->
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<!-- Header Buttons -->
|
||||
<div class="text-white">
|
||||
<button id="toggle-nav" class="toggle-menu"> <i></i> <i></i><i></i> </button>
|
||||
</div>
|
||||
|
||||
</header>
|
||||
</section>
|
||||
|
||||
<!-- Bottom Menu -->
|
||||
<section id="footer-nav" class="w-full text-white absolute bottom-0 z-50 text-center pt-4 pb-8 bg-blue-800">
|
||||
<ul class="lg:max-w-3xl mx-auto text-3xl grid grid-cols-6">
|
||||
|
||||
<!-- Menu Icons Loop -->
|
||||
<?php foreach ($menuData as $page) { ?>
|
||||
|
||||
<li>
|
||||
<a href="<?php echo get_site_url('/') . '/' . $page['slug']; ?>">
|
||||
<i class="<?php echo $page['bootstrap_icon'] ?> text-2xl" aria-hidden="true"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<!-- Slide Out Section -->
|
||||
<section id="slide-out-menu" class="fixed z-30 bg-blue-900 w-11/12 sm:w-3/5 lg:w-2/5 xl:w-4/12 2xl:w-3/12 h-full px-2">
|
||||
|
||||
<div class="h-full space-y-8 overflow-x-hidden overflow-y-scroll no-scrollbar pt-24 pb-28">
|
||||
|
||||
<!-- Option/Settings Icon -->
|
||||
<div class="w-full px-4 flex justify-end text-white">
|
||||
<button><i class="text-2xl bi bi-gear-fill"></i></button>
|
||||
</div>
|
||||
|
||||
<!-- Menu Section -->
|
||||
<nav>
|
||||
|
||||
<!-- Primary Menu -->
|
||||
|
||||
<ul role="list" class="text-white space-y-2">
|
||||
|
||||
<!-- Menu Loop -->
|
||||
<?php
|
||||
$pages = get_pages_as_array();
|
||||
|
||||
foreach ($pages as $page) {
|
||||
|
||||
$pageID = $page['page']->ID;
|
||||
$pageTitle = $page['page']->post_title;
|
||||
$pageSlug = $page['page']->post_name;
|
||||
$pageBG = $page['page']->post_name . '.png';
|
||||
$pageBootstrapIcon = get_field('bootstrap_icon', $page['page']->ID);
|
||||
|
||||
?>
|
||||
|
||||
<li class="accordion">
|
||||
<div class="flex px-2 hover:bg-gray-800 rounded-md justify-between">
|
||||
<a href="<?php echo get_site_url() . '/' . $pageSlug; ?>" class="gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex items-center align-middle">
|
||||
<i class="<?php echo $pageBootstrapIcon ?> text-2xl" aria-hidden="true"></i>
|
||||
<p><?php echo $pageTitle ?></p>
|
||||
</a>
|
||||
|
||||
<?php if ($page['subpages']) { ?>
|
||||
<button class="accordion-toggle">
|
||||
<i class="fas fa-chevron-down items-center ml-auto rounded-md bg-gray-900 px-2.5 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
<i class="fas fa-times items-center ml-auto rounded-md bg-gray-900 px-3 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
</button>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
<ul class="accordion-content space-y-2">
|
||||
<?php foreach ($page['subpages'] as $subpage) {
|
||||
|
||||
$subpageID = $subpage->ID;
|
||||
$subpageTitle = $subpage->post_title;
|
||||
$subpageSlug = $subpage->post_name;
|
||||
$subpageBG = $subpage->post_name . '.png';
|
||||
$subpageBootstrapIcon = get_field('bootstrap_icon', $subpage->ID);
|
||||
|
||||
?>
|
||||
<li class="p-2">
|
||||
<a href="<?php echo get_site_url() . '/' . $pageSlug . '/' . $subpageSlug ?>" class="flex space-x-2 items-center"><i class="bi-caret-right-fill"></i>
|
||||
<p><?php echo $subpageTitle ?></p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<!-- Horizontal Rule -->
|
||||
<div class="horizontal-rule w-4/5 mt-4 mx-auto bg-gray-800"></div>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<!-- Splash Screen Content-->
|
||||
<section id="splash-screen" class="hidden absolute w-full bottom-0 h-screen items-center justify-center">
|
||||
|
||||
<div class="space-y-8 px-4 text-white flex flex-col h-screen justify-center items-center">
|
||||
<img class="w-56" src="<?php echo get_template_directory_uri(); ?>/assets/images/logos/logo-white.png" alt="Splash Logo">
|
||||
<h1 class="uppercase text-center font-bold text-xl">A student handbook for post secondary transitions</h1>
|
||||
<button id="app-enter" class="bg-blue-800 shadow-sm shadow-gray-50 px-12 py-4 rounded-md"><i class="bi bi-box-arrow-in-right pr-4"></i>Enter</button>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<?php
|
||||
|
||||
include(get_theme_file_path('/includes/front-end/menu_data.php'));
|
||||
require_once(get_theme_file_path('/includes/back-end/helper_functions.php'));
|
||||
|
||||
?>
|
||||
|
||||
<!-- Header -->
|
||||
<section id="header-nav" class="w-full absolute bg-blue-500 top-0 z-50">
|
||||
<header class="flex items-center justify-between text-center px-4 py-2 space-x-2 lg:space-x-8 bg-blue-800">
|
||||
|
||||
<!-- Header Logo -->
|
||||
<a class="relative z-50 flex items-center space-x-4" href="<?php echo get_site_url(); ?>">
|
||||
<img width="40px" src="<?php echo get_template_directory_uri(); ?>/assets/images/logos/header__logo.png" alt="NAN Logo">
|
||||
<h1 class="font-bold hidden lg:flex text-white text-2xl">NAN Student Handbook</h1>
|
||||
</a>
|
||||
|
||||
<!-- Header Search -->
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<!-- Header Buttons -->
|
||||
<div class="text-white">
|
||||
<button id="toggle-nav" class="toggle-menu"> <i></i> <i></i><i></i> </button>
|
||||
</div>
|
||||
|
||||
</header>
|
||||
</section>
|
||||
|
||||
<!-- Bottom Menu -->
|
||||
<section id="footer-nav" class="w-full text-white absolute bottom-0 z-50 text-center pt-4 pb-8 bg-blue-800">
|
||||
<ul class="lg:max-w-3xl mx-auto text-3xl grid grid-cols-6">
|
||||
|
||||
<!-- Menu Icons Loop -->
|
||||
<?php foreach ($menuData as $page) { ?>
|
||||
|
||||
<li>
|
||||
<a href="<?php echo get_site_url('/') . '/' . $page['slug']; ?>">
|
||||
<i class="<?php echo $page['bootstrap_icon'] ?> text-2xl" aria-hidden="true"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<!-- Slide Out Section -->
|
||||
<section id="slide-out-menu" class="fixed z-30 bg-blue-900 w-11/12 sm:w-3/5 lg:w-2/5 xl:w-4/12 2xl:w-3/12 h-full px-2">
|
||||
|
||||
<div class="h-full space-y-8 overflow-x-hidden overflow-y-scroll no-scrollbar pt-24 pb-28">
|
||||
|
||||
<!-- Menu Section -->
|
||||
<nav>
|
||||
|
||||
<!-- Primary Menu -->
|
||||
|
||||
<ul role="list" class="text-white space-y-2">
|
||||
|
||||
<!-- Menu Loop -->
|
||||
<?php
|
||||
$pages = get_pages_as_array();
|
||||
|
||||
foreach ($pages as $page) {
|
||||
|
||||
$pageID = $page['page']->ID;
|
||||
$pageTitle = $page['page']->post_title;
|
||||
$pageSlug = $page['page']->post_name;
|
||||
$pageBG = $page['page']->post_name . '.png';
|
||||
$pageBootstrapIcon = get_field('bootstrap_icon', $page['page']->ID);
|
||||
|
||||
?>
|
||||
|
||||
<li class="accordion">
|
||||
<div class="flex px-2 hover:bg-gray-800 rounded-md justify-between">
|
||||
<a href="<?php echo get_site_url() . '/' . $pageSlug; ?>" class="gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex items-center align-middle">
|
||||
<i class="<?php echo $pageBootstrapIcon ?> text-2xl" aria-hidden="true"></i>
|
||||
<p><?php echo $pageTitle ?></p>
|
||||
</a>
|
||||
|
||||
<?php if ($page['subpages']) { ?>
|
||||
<button class="accordion-toggle">
|
||||
<i class="fas fa-chevron-down items-center ml-auto rounded-md bg-gray-900 px-2.5 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
<i class="fas fa-times items-center ml-auto rounded-md bg-gray-900 px-3 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
</button>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
<ul class="accordion-content space-y-2">
|
||||
<?php foreach ($page['subpages'] as $subpage) {
|
||||
|
||||
$subpageID = $subpage->ID;
|
||||
$subpageTitle = $subpage->post_title;
|
||||
$subpageSlug = $subpage->post_name;
|
||||
$subpageBG = $subpage->post_name . '.png';
|
||||
$subpageBootstrapIcon = get_field('bootstrap_icon', $subpage->ID);
|
||||
|
||||
?>
|
||||
<li class="p-2">
|
||||
<a href="<?php echo get_site_url() . '/' . $pageSlug . '/' . $subpageSlug ?>" class="flex space-x-2 items-center"><i class="bi-caret-right-fill"></i>
|
||||
<p><?php echo $subpageTitle ?></p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<!-- Horizontal Rule -->
|
||||
<div class="horizontal-rule w-4/5 mt-4 mx-auto bg-gray-800"></div>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<!-- Splash Screen Content-->
|
||||
<section id="splash-screen" class="hidden absolute w-full bottom-0 h-screen items-center justify-center">
|
||||
|
||||
<div class="space-y-8 px-4 text-white flex flex-col h-screen justify-center items-center">
|
||||
<img class="w-56" src="<?php echo get_template_directory_uri(); ?>/assets/images/logos/logo-white.png" alt="Splash Logo">
|
||||
<h1 class="uppercase text-center font-bold text-xl">A student handbook for post secondary transitions</h1>
|
||||
<button id="app-enter" class="bg-blue-800 shadow-sm shadow-gray-50 px-12 py-4 rounded-md"><i class="bi bi-box-arrow-in-right pr-4"></i>Enter</button>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<!-- Back Button -->
|
||||
<button id="back-button" class="flex items-center justify-center cursor fixed bottom-24 right-4 z-50">
|
||||
<div class="bg-white rounded-full p-1"><i class="relative -top-0.5 bi bi-arrow-left-circle-fill text-blue-500 hover:text-blue-900 opacity-70 hover:opacity-100 text-4xl"></i></div>
|
||||
<div class="hidden bg-white rounded-full p-1"><i class="relative -top-0.5 bi bi-arrow-right-circle-fill text-blue-500 hover:text-blue-900 opacity-70 hover:opacity-100 text-4xl"></i></div>
|
||||
</button>
|
@@ -1,24 +1,24 @@
|
||||
<?php
|
||||
$current_slug = get_post_field('post_name', get_post());
|
||||
|
||||
$pages = get_pages_as_array();
|
||||
$page = getPageForSlug($pages, $current_slug);
|
||||
$pageID = $page->ID;
|
||||
$pageTitle = $page->post_title;
|
||||
$pageSlug = $page->post_name;
|
||||
|
||||
if ($page->post_parent !== 0) {
|
||||
$parent_page = $pages[$page->post_parent]['page'];
|
||||
$pageBG = 'internal/' . $page->post_name . '.png';
|
||||
} else {
|
||||
$pageBG = $page->post_name . '.png';
|
||||
}
|
||||
|
||||
?>
|
||||
<!-- Header Banner -->
|
||||
<div id="header-banner" class="relative h-24 md:h-56 lg:h-1/3 flex items-center md:justify-center">
|
||||
<h1 class="shadow-md px-4 py-2 bg-white bg-opacity-40 text-blue-800 font-medium relative z-20 text-xl md:text-2xl lg:text-center"><?php echo $pageTitle ?></h1>
|
||||
<img class="absolute top-0 h-full w-full object-cover" src="<?php echo get_template_directory_uri(); ?>/assets/images/bgs/<?php echo $pageBG; ?>" alt="Header Banner">
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$current_slug = get_post_field('post_name', get_post());
|
||||
|
||||
$pages = get_pages_as_array();
|
||||
$page = getPageForSlug($pages, $current_slug);
|
||||
$pageID = $page->ID;
|
||||
$pageTitle = $page->post_title;
|
||||
$pageSlug = $page->post_name;
|
||||
|
||||
if ($page->post_parent !== 0) {
|
||||
$parent_page = $pages[$page->post_parent]['page'];
|
||||
$pageBG = 'internal/' . $page->post_name . '.png';
|
||||
} else {
|
||||
$pageBG = $page->post_name . '.png';
|
||||
}
|
||||
|
||||
?>
|
||||
<!-- Header Banner -->
|
||||
<div id="header-banner" class="relative h-24 md:h-56 lg:h-1/3 flex items-center md:justify-center">
|
||||
<h1 class="shadow-md px-4 py-2 bg-white bg-opacity-40 text-blue-800 font-medium relative z-20 text-xl md:text-2xl lg:text-center"><?php echo $pageTitle ?></h1>
|
||||
<img class="absolute top-0 h-full w-full object-cover" src="<?php echo get_template_directory_uri(); ?>/assets/images/bgs/<?php echo $pageBG; ?>" alt="Header Banner">
|
||||
</div>
|
||||
|
||||
<?php get_template_part('/templates/partials/quick_links'); ?>
|
@@ -1,41 +1,41 @@
|
||||
<?php
|
||||
|
||||
$current_slug = get_post_field('post_name', get_post());
|
||||
$pages = get_pages_as_array();
|
||||
$pageForSlug = getPageForSlug($pages, $current_slug);
|
||||
$parentPage = $pageForSlug->post_parent;
|
||||
|
||||
|
||||
if ($parentPage === 0) {
|
||||
$subpages = getSubpagesForSlug($pages, $current_slug);
|
||||
} else $subpages = getSubpagesForSlug($pages, $pages[$parentPage]['page']->post_name);
|
||||
|
||||
|
||||
if ($parentPage != 0 && count($subpages) > 0) { ?>
|
||||
|
||||
<div class="px-2 mt-4">
|
||||
<ul role="list" class="max-w-7xl mx-auto text-blue-500 bg-white border-blue-500 border py-4 mb-4 rounded-md">
|
||||
<li class="accordion">
|
||||
<div class="flex px-2 rounded-md justify-between">
|
||||
<div class="gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex items-center align-middle">
|
||||
<p>Quick Links</p>
|
||||
</div>
|
||||
<button class="accordion-toggle">
|
||||
<i class="fas fa-chevron-down items-center ml-auto rounded-md bg-gray-900 px-2.5 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
<i class="fas fa-times items-center ml-auto rounded-md bg-gray-900 px-3 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
<ul class="accordion-content space-y-2">
|
||||
<?php
|
||||
foreach ($subpages as $subpage) { ?>
|
||||
<li class="p-2">
|
||||
<a href="<?php echo get_site_url() . '/' . $pages[$subpage->post_parent]['page']->post_name . '/' . $subpage->post_name ?>" class="flex space-x-2 items-center"><i class="bi-caret-right-fill"></i>
|
||||
<p><?php echo $subpage->post_title ?></p>
|
||||
</a>
|
||||
</li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php }
|
||||
<?php
|
||||
|
||||
$current_slug = get_post_field('post_name', get_post());
|
||||
$pages = get_pages_as_array();
|
||||
$pageForSlug = getPageForSlug($pages, $current_slug);
|
||||
$parentPage = $pageForSlug->post_parent;
|
||||
|
||||
|
||||
if ($parentPage === 0) {
|
||||
$subpages = getSubpagesForSlug($pages, $current_slug);
|
||||
} else $subpages = getSubpagesForSlug($pages, $pages[$parentPage]['page']->post_name);
|
||||
|
||||
|
||||
if ($parentPage != 0 && count($subpages) > 0) { ?>
|
||||
|
||||
<div class="px-2 mt-4">
|
||||
<ul role="list" class="max-w-7xl mx-auto text-blue-500 bg-white border-blue-500 border py-4 mb-4 rounded-md">
|
||||
<li class="accordion">
|
||||
<div class="flex px-2 rounded-md justify-between">
|
||||
<div class="gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex items-center align-middle">
|
||||
<p>Quick Links</p>
|
||||
</div>
|
||||
<button class="accordion-toggle">
|
||||
<i class="fas fa-chevron-down items-center ml-auto rounded-md bg-gray-900 px-2.5 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
<i class="fas fa-times items-center ml-auto rounded-md bg-gray-900 px-3 py-2 text-white ring-1 ring-inset ring-gray-700" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
<ul class="accordion-content space-y-2">
|
||||
<?php
|
||||
foreach ($subpages as $subpage) { ?>
|
||||
<li class="p-2">
|
||||
<a href="<?php echo get_site_url() . '/' . $pages[$subpage->post_parent]['page']->post_name . '/' . $subpage->post_name ?>" class="flex space-x-2 items-center"><i class="bi-caret-right-fill"></i>
|
||||
<p><?php echo $subpage->post_title ?></p>
|
||||
</a>
|
||||
</li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php }
|
||||
|
@@ -1,38 +1,38 @@
|
||||
<!-- Quick Links Section -->
|
||||
<?php
|
||||
|
||||
$current_slug = get_post_field('post_name', get_post());
|
||||
$pages = get_pages_as_array();
|
||||
$subpages = getSubpagesForSlug($pages, $current_slug);
|
||||
|
||||
|
||||
if (count($subpages) > 0) { ?>
|
||||
|
||||
<div class="py-4 px-2 lg:h-full">
|
||||
<ul class="grid grid-cols-1 lg:grid-cols-2 gap-2 lg:h-full place-items-stretch">
|
||||
<?php
|
||||
foreach ($subpages as $subpage) {
|
||||
|
||||
$pageID = $subpage->ID;
|
||||
|
||||
?>
|
||||
|
||||
<li class="category-cards flex rounded-md shadow-md relative overflow-hidden w-full" style="background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/bgs/internal/<?php echo $subpage->post_name ?>.png');">
|
||||
<a class="relative w-full py-8 px-4 space-y-2 lg:flex lg:flex-col lg:items-center lg:justify-center" href="<?php echo get_site_url() . '/' . $pages[$subpage->post_parent]['page']->post_name . '/' . $subpage->post_name ?>">
|
||||
|
||||
<div class="bg-white bg-opacity-60 rounded-md py-2 px-4 lg:px-8">
|
||||
<h2 class="font-bold uppercase"><?php echo $subpage->post_title ?></h2>
|
||||
</div>
|
||||
|
||||
<?php if (get_field('description', $pageID) != '') { ?>
|
||||
<p class="lg:text-center"><?php echo get_field('description', $pageID); ?></p>
|
||||
<?php } ?>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<?php }
|
||||
<!-- Quick Links Section -->
|
||||
<?php
|
||||
|
||||
$current_slug = get_post_field('post_name', get_post());
|
||||
$pages = get_pages_as_array();
|
||||
$subpages = getSubpagesForSlug($pages, $current_slug);
|
||||
|
||||
|
||||
if (count($subpages) > 0) { ?>
|
||||
|
||||
<div class="py-4 px-2 lg:h-full">
|
||||
<ul class="grid grid-cols-1 lg:grid-cols-2 gap-2 lg:h-full place-items-stretch">
|
||||
<?php
|
||||
foreach ($subpages as $subpage) {
|
||||
|
||||
$pageID = $subpage->ID;
|
||||
|
||||
?>
|
||||
|
||||
<li class="category-cards flex rounded-md shadow-md relative overflow-hidden w-full" style="background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/bgs/internal/<?php echo $subpage->post_name ?>.png');">
|
||||
<a class="relative w-full py-8 px-4 space-y-2 lg:flex lg:flex-col lg:items-center lg:justify-center" href="<?php echo get_site_url() . '/' . $pages[$subpage->post_parent]['page']->post_name . '/' . $subpage->post_name ?>">
|
||||
|
||||
<div class="bg-white bg-opacity-60 rounded-md py-2 px-4 lg:px-8">
|
||||
<h2 class="font-bold uppercase"><?php echo $subpage->post_title ?></h2>
|
||||
</div>
|
||||
|
||||
<?php if (get_field('description', $pageID) != '') { ?>
|
||||
<p class="lg:text-center"><?php echo get_field('description', $pageID); ?></p>
|
||||
<?php } ?>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<?php }
|
||||
|
Reference in New Issue
Block a user