From 52b077a48c743ba4d08ac00520a0bf1ef6deef5f Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 24 Feb 2017 21:27:59 +0100 Subject: Initial commit. --- template/standard/html/403.php | 11 ++++ template/standard/html/404.php | 11 ++++ template/standard/html/feed/item_page.php | 25 +++++++++ template/standard/html/feed/item_post.php | 26 +++++++++ template/standard/html/feed/main.php | 50 +++++++++++++++++ template/standard/html/home.php | 19 +++++++ template/standard/html/main.php | 92 +++++++++++++++++++++++++++++++ template/standard/html/page/item.php | 20 +++++++ template/standard/html/page/list.php | 19 +++++++ template/standard/html/page/main.php | 46 ++++++++++++++++ template/standard/html/pagination.php | 54 ++++++++++++++++++ template/standard/html/post/item.php | 20 +++++++ template/standard/html/post/list.php | 19 +++++++ template/standard/html/post/main.php | 46 ++++++++++++++++ template/standard/html/search/main.php | 34 ++++++++++++ template/standard/html/search/result.php | 36 ++++++++++++ template/standard/html/user/item.php | 20 +++++++ template/standard/html/user/list.php | 19 +++++++ template/standard/html/user/main.php | 43 +++++++++++++++ 19 files changed, 610 insertions(+) create mode 100644 template/standard/html/403.php create mode 100644 template/standard/html/404.php create mode 100644 template/standard/html/feed/item_page.php create mode 100644 template/standard/html/feed/item_post.php create mode 100644 template/standard/html/feed/main.php create mode 100644 template/standard/html/home.php create mode 100644 template/standard/html/main.php create mode 100644 template/standard/html/page/item.php create mode 100644 template/standard/html/page/list.php create mode 100644 template/standard/html/page/main.php create mode 100644 template/standard/html/pagination.php create mode 100644 template/standard/html/post/item.php create mode 100644 template/standard/html/post/list.php create mode 100644 template/standard/html/post/main.php create mode 100644 template/standard/html/search/main.php create mode 100644 template/standard/html/search/result.php create mode 100644 template/standard/html/user/item.php create mode 100644 template/standard/html/user/list.php create mode 100644 template/standard/html/user/main.php (limited to 'template/standard/html') diff --git a/template/standard/html/403.php b/template/standard/html/403.php new file mode 100644 index 0000000..5039678 --- /dev/null +++ b/template/standard/html/403.php @@ -0,0 +1,11 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

template('403_heading_text')?>

+

template('403_heading_desc')?>

\ No newline at end of file diff --git a/template/standard/html/404.php b/template/standard/html/404.php new file mode 100644 index 0000000..acb7ab9 --- /dev/null +++ b/template/standard/html/404.php @@ -0,0 +1,11 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

template('404_heading_text')?>

+

template('404_heading_desc')?>

\ No newline at end of file diff --git a/template/standard/html/feed/item_page.php b/template/standard/html/feed/item_page.php new file mode 100644 index 0000000..9defc25 --- /dev/null +++ b/template/standard/html/feed/item_page.php @@ -0,0 +1,25 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> + + <?=escapeHTML($PAGE['ATTR']['NAME'])?> + + + + + + + + ]]> + + + + + \ No newline at end of file diff --git a/template/standard/html/feed/item_post.php b/template/standard/html/feed/item_post.php new file mode 100644 index 0000000..f004316 --- /dev/null +++ b/template/standard/html/feed/item_post.php @@ -0,0 +1,26 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> + + <?=escapeHTML($POST['ATTR']['NAME'])?> + + + + + + + +

Kommentare: [0x33EB32A2] blog@nerdmind.de

+ ]]> +
+ + + +
\ No newline at end of file diff --git a/template/standard/html/feed/main.php b/template/standard/html/feed/main.php new file mode 100644 index 0000000..174a841 --- /dev/null +++ b/template/standard/html/feed/main.php @@ -0,0 +1,50 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# + +switch($FEED['TYPE']) { + case 'post': + $title = escapeHTML($BLOGMETA['NAME']).' ['.$Language->template('feed_only_posts').']'; + $self = Application::getURL('feed/post/'); + break; + case 'page': + $title = escapeHTML($BLOGMETA['NAME']).' ['.$Language->template('feed_only_pages').']'; + $self = Application::getURL('feed/page/'); + break; + default: + $title = escapeHTML($BLOGMETA['NAME']); + $self = Application::getURL('feed/'); +} +?> +'?> + + + <?=$title?> + + + + + + + + <?=escapeHTML($BLOGMETA['NAME'])?> + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/template/standard/html/home.php b/template/standard/html/home.php new file mode 100644 index 0000000..42fc169 --- /dev/null +++ b/template/standard/html/home.php @@ -0,0 +1,19 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

template('home_heading_text', escapeHTML(Application::get('BLOGMETA.NAME')))?>Feed

+

template('home_heading_desc', Application::get('POST.LIST_SIZE'))?>

+ + + + \ No newline at end of file diff --git a/template/standard/html/main.php b/template/standard/html/main.php new file mode 100644 index 0000000..19d3b29 --- /dev/null +++ b/template/standard/html/main.php @@ -0,0 +1,92 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <?=escapeHTML("{$HEAD['NAME']} | {$BLOGMETA['NAME']} {$BLOGMETA['DESC']}")?> + + +
+
+
+ "> + + +
+ +
+
+ +
+
+ © +
+
+ + \ No newline at end of file diff --git a/template/standard/html/page/item.php b/template/standard/html/page/item.php new file mode 100644 index 0000000..29ab9cf --- /dev/null +++ b/template/standard/html/page/item.php @@ -0,0 +1,20 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +
  • +
    +

    + + +

    +
    +
    +

    +
    +
  • \ No newline at end of file diff --git a/template/standard/html/page/list.php b/template/standard/html/page/list.php new file mode 100644 index 0000000..b6a112d --- /dev/null +++ b/template/standard/html/page/list.php @@ -0,0 +1,19 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

    text('page_overview')?>Feed

    +

    template('page_base_heading_desc', $PAGINATION['THIS'])?>

    + + + + \ No newline at end of file diff --git a/template/standard/html/page/main.php b/template/standard/html/page/main.php new file mode 100644 index 0000000..b5e6a6d --- /dev/null +++ b/template/standard/html/page/main.php @@ -0,0 +1,46 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# + +$user = "{$USER['ATTR']['FULLNAME']}"; +$time = ""; +?> +

    template('page_main_heading_text', $PAGE['ATTR']['NAME']))?>

    +

    template('page_main_heading_desc', [$user, $time])?>

    + +
    + +
    + + + + \ No newline at end of file diff --git a/template/standard/html/pagination.php b/template/standard/html/pagination.php new file mode 100644 index 0000000..221530e --- /dev/null +++ b/template/standard/html/pagination.php @@ -0,0 +1,54 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> + + + \ No newline at end of file diff --git a/template/standard/html/post/item.php b/template/standard/html/post/item.php new file mode 100644 index 0000000..ab00624 --- /dev/null +++ b/template/standard/html/post/item.php @@ -0,0 +1,20 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +
  • +
    +

    + + +

    +
    +
    + +
    +
  • \ No newline at end of file diff --git a/template/standard/html/post/list.php b/template/standard/html/post/list.php new file mode 100644 index 0000000..457c1df --- /dev/null +++ b/template/standard/html/post/list.php @@ -0,0 +1,19 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

    text('post_overview')?>Feed

    +

    template('post_base_heading_desc', $PAGINATION['THIS'])?>

    + + + + \ No newline at end of file diff --git a/template/standard/html/post/main.php b/template/standard/html/post/main.php new file mode 100644 index 0000000..31d7102 --- /dev/null +++ b/template/standard/html/post/main.php @@ -0,0 +1,46 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# + +$user = "{$USER['ATTR']['FULLNAME']}"; +$time = ""; +?> +

    template('post_main_heading_text', $POST['ATTR']['NAME']))?>

    +

    template('post_main_heading_desc', [$user, $time])?>

    + +
    + +
    + + + + \ No newline at end of file diff --git a/template/standard/html/search/main.php b/template/standard/html/search/main.php new file mode 100644 index 0000000..b749517 --- /dev/null +++ b/template/standard/html/search/main.php @@ -0,0 +1,34 @@ +

    template('search_base_heading_text')?>

    +

    template('search_base_heading_desc')?>

    + + +
    + + +
    + + + + + + + +
    \ No newline at end of file diff --git a/template/standard/html/search/result.php b/template/standard/html/search/result.php new file mode 100644 index 0000000..e79eb98 --- /dev/null +++ b/template/standard/html/search/result.php @@ -0,0 +1,36 @@ +

    template('search_result_heading_text', escapeHTML($SEARCH['TEXT']))?>

    +

    template('search_result_heading_desc')?>

    + +
    + + + + + + + +
    + + \ No newline at end of file diff --git a/template/standard/html/user/item.php b/template/standard/html/user/item.php new file mode 100644 index 0000000..78a757d --- /dev/null +++ b/template/standard/html/user/item.php @@ -0,0 +1,20 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +
  • +
    +

    + + +

    +
    +
    + +
    +
  • \ No newline at end of file diff --git a/template/standard/html/user/list.php b/template/standard/html/user/list.php new file mode 100644 index 0000000..922a3a4 --- /dev/null +++ b/template/standard/html/user/list.php @@ -0,0 +1,19 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

    text('user_overview')?>

    +

    template('user_base_heading_desc', $PAGINATION['THIS'])?>

    + + + + \ No newline at end of file diff --git a/template/standard/html/user/main.php b/template/standard/html/user/main.php new file mode 100644 index 0000000..adc0534 --- /dev/null +++ b/template/standard/html/user/main.php @@ -0,0 +1,43 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

    template('user_heading_text', [escapeHTML($USER['ATTR']['FULLNAME']), $USER['ATTR']['USERNAME']])?>

    +

    template('user_heading_desc', [escapeHTML($USER['ATTR']['FULLNAME']), $COUNT['POST'], $COUNT['PAGE']])?>

    + +
    + +
    + + + + \ No newline at end of file -- cgit v1.2.3