diff options
author | Thomas Lange <code@nerdmind.de> | 2017-10-22 21:04:02 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-10-22 21:04:02 +0200 |
commit | b886b447c939db888aee84224995da58540b4503 (patch) | |
tree | 6738b1c7979eaa049a247d749a881944777326b8 /template/admin/html/post/search.php | |
parent | c73c6acbf280c99fd4178577cc99a55a6e2e11cf (diff) | |
download | blog-b886b447c939db888aee84224995da58540b4503.tar.gz blog-b886b447c939db888aee84224995da58540b4503.tar.xz blog-b886b447c939db888aee84224995da58540b4503.zip |
Implemented: A full-text search functionality for posts and pages in the administration area. In addition, some markup within the "/*/index.php" files of the admin template was re-formatted.
Diffstat (limited to 'template/admin/html/post/search.php')
-rw-r--r-- | template/admin/html/post/search.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/template/admin/html/post/search.php b/template/admin/html/post/search.php new file mode 100644 index 0000000..ab021b9 --- /dev/null +++ b/template/admin/html/post/search.php @@ -0,0 +1,20 @@ +<h1> + <i class="fa fa-search"></i><?=$Language->text('title_post_search')?> + <a class="brackets" href="<?=Application::getAdminURL("post/insert.php")?>"><?=$Language->text('insert')?></a> +</h1> +<p><?=$Language->text('search_post_desc')?></p> + +<form id="search-form" method="GET"> + <div class="flex flex-padding background"> + <input id="search-text" type="search" name="q" placeholder="<?=$Language->text('placeholder_search')?>" value="<?=escapeHTML($QUERY)?>" /> + </div> + <div class="flex flex-padding background"> + <input id="update-button" type="submit" value="<?=$Language->text('search')?>" /> + </div> +</form> + +<div class="item-container post"> + <?php foreach($POSTS as $post): ?> + <?php echo $post; ?> + <?php endforeach; ?> +</div>
\ No newline at end of file |