aboutsummaryrefslogtreecommitdiffstats
path: root/theme/default/html/search/result.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2019-04-26 20:32:48 +0200
committerThomas Lange <code@nerdmind.de>2019-04-26 21:02:13 +0200
commit33794b12d5c68df918b988497a396b86acb09feb (patch)
tree810476a1fe4265f5163d0d1ceb6a49f5a668aa33 /theme/default/html/search/result.php
parent0c918cafbef2e6c402e6852e821397114ea62284 (diff)
downloadblog-33794b12d5c68df918b988497a396b86acb09feb.tar.gz
blog-33794b12d5c68df918b988497a396b86acb09feb.tar.xz
blog-33794b12d5c68df918b988497a396b86acb09feb.zip
Rename "template" directory to "theme"
This commit renames the "template" directory to "theme" because "theme" is the more correct term here.
Diffstat (limited to 'theme/default/html/search/result.php')
-rw-r--r--theme/default/html/search/result.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/theme/default/html/search/result.php b/theme/default/html/search/result.php
new file mode 100644
index 0000000..044afe1
--- /dev/null
+++ b/theme/default/html/search/result.php
@@ -0,0 +1,36 @@
+<h1><?=$Language->text('search_result_heading_text', escapeHTML($SEARCH['TEXT']))?></h1>
+<p><?=$Language->text('search_result_heading_desc')?></p>
+
+<form action="" method="GET">
+ <input autofocus type="search" name="q" placeholder="<?=$Language->text('search_form_placeholder')?>" value="<?=escapeHTML($SEARCH['TEXT'])?>" />
+
+ <select name="d">
+ <option value=""><?=$Language->text('date_d')?></option>
+
+ <?php foreach($FORM['OPTIONS']['D'] as $option): ?>
+ <option value="<?=$option?>"<?=($FORM['SELECT']['D'] === $option) ? ' selected' : '' ?>><?=$option?></option>
+ <?php endforeach; ?>
+ </select>
+ <select name="m">
+ <option value=""><?=$Language->text('date_m')?></option>
+
+ <?php foreach($FORM['OPTIONS']['M'] as $option): ?>
+ <option value="<?=$option?>"<?=($FORM['SELECT']['M'] === $option) ? ' selected' : '' ?>><?=$option?></option>
+ <?php endforeach; ?>
+ </select>
+ <select name="y">
+ <option value=""><?=$Language->text('date_y')?></option>
+
+ <?php foreach($FORM['OPTIONS']['Y'] as $option): ?>
+ <option value="<?=$option?>"<?=($FORM['SELECT']['Y'] === $option) ? ' selected' : '' ?>><?=$option?></option>
+ <?php endforeach; ?>
+ </select>
+
+ <input type="submit" value="<?=$Language->text('search')?>" />
+</form>
+
+<div class="item-container post">
+ <?php foreach($RESULT['LIST'] as $post): ?>
+ <?php echo $post; ?>
+ <?php endforeach; ?>
+</div> \ No newline at end of file