aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2019-04-26 20:02:42 +0200
committerThomas Lange <code@nerdmind.de>2019-04-26 20:02:42 +0200
commit0c918cafbef2e6c402e6852e821397114ea62284 (patch)
tree56b2d2897363479565170645663ab0d1cb02943f
parent1db1aae0d9bcd8d58877b684e17ac3805c74ce19 (diff)
downloadblog-0c918cafbef2e6c402e6852e821397114ea62284.tar.gz
blog-0c918cafbef2e6c402e6852e821397114ea62284.tar.xz
blog-0c918cafbef2e6c402e6852e821397114ea62284.zip
Rename "standard" template to "default"
-rw-r--r--core/application.php2
-rw-r--r--core/configuration-example.php2
-rw-r--r--readme.md2
-rw-r--r--template/default/html/403.php (renamed from template/standard/html/403.php)0
-rw-r--r--template/default/html/404.php (renamed from template/standard/html/404.php)0
-rw-r--r--template/default/html/feed/item_page.php (renamed from template/standard/html/feed/item_page.php)0
-rw-r--r--template/default/html/feed/item_post.php (renamed from template/standard/html/feed/item_post.php)0
-rw-r--r--template/default/html/feed/main.php (renamed from template/standard/html/feed/main.php)0
-rw-r--r--template/default/html/home.php (renamed from template/standard/html/home.php)0
-rw-r--r--template/default/html/main.php (renamed from template/standard/html/main.php)0
-rw-r--r--template/default/html/page/item.php (renamed from template/standard/html/page/item.php)0
-rw-r--r--template/default/html/page/list.php (renamed from template/standard/html/page/list.php)0
-rw-r--r--template/default/html/page/main.php (renamed from template/standard/html/page/main.php)0
-rw-r--r--template/default/html/pagination.php (renamed from template/standard/html/pagination.php)0
-rw-r--r--template/default/html/post/item.php (renamed from template/standard/html/post/item.php)0
-rw-r--r--template/default/html/post/list.php (renamed from template/standard/html/post/list.php)0
-rw-r--r--template/default/html/post/main.php (renamed from template/standard/html/post/main.php)0
-rw-r--r--template/default/html/search/main.php (renamed from template/standard/html/search/main.php)0
-rw-r--r--template/default/html/search/result.php (renamed from template/standard/html/search/result.php)0
-rw-r--r--template/default/html/user/item.php (renamed from template/standard/html/user/item.php)0
-rw-r--r--template/default/html/user/list.php (renamed from template/standard/html/user/list.php)0
-rw-r--r--template/default/html/user/main.php (renamed from template/standard/html/user/main.php)0
-rw-r--r--template/default/lang/de.php (renamed from template/standard/lang/de.php)0
-rw-r--r--template/default/lang/en.php (renamed from template/standard/lang/en.php)0
-rw-r--r--template/default/rsrc/font-awesome.min.css (renamed from template/standard/rsrc/font-awesome.min.css)0
-rw-r--r--template/default/rsrc/font/font-awesome.woff2 (renamed from template/standard/rsrc/font/font-awesome.woff2)bin77160 -> 77160 bytes
-rw-r--r--template/default/rsrc/font/ruda-n-400.woff2 (renamed from template/standard/rsrc/font/ruda-n-400.woff2)bin9120 -> 9120 bytes
-rw-r--r--template/default/rsrc/font/ruda-n-700.woff2 (renamed from template/standard/rsrc/font/ruda-n-700.woff2)bin9116 -> 9116 bytes
-rw-r--r--template/default/rsrc/logo.png (renamed from template/standard/rsrc/logo.png)bin2595 -> 2595 bytes
-rw-r--r--template/default/rsrc/main.css (renamed from template/standard/rsrc/main.css)0
-rw-r--r--template/default/rsrc/main.js (renamed from template/standard/rsrc/main.js)0
31 files changed, 3 insertions, 3 deletions
diff --git a/core/application.php b/core/application.php
index 7e4f731..a9850aa 100644
--- a/core/application.php
+++ b/core/application.php
@@ -48,7 +48,7 @@ $configuration = [
'DATABASE.BASENAME' => 'blog',
'DATABASE.USERNAME' => 'blog',
'DATABASE.PASSWORD' => '',
- 'TEMPLATE.NAME' => 'standard',
+ 'TEMPLATE.NAME' => 'default',
'TEMPLATE.LANG' => 'en',
'ADMIN.TEMPLATE' => 'admin',
'ADMIN.LANGUAGE' => 'en',
diff --git a/core/configuration-example.php b/core/configuration-example.php
index 6c7d40a..4378d46 100644
--- a/core/configuration-example.php
+++ b/core/configuration-example.php
@@ -22,7 +22,7 @@ Application::set('BLOGMETA.LANG', 'en');
Application::set('DATABASE.BASENAME', 'blog');
Application::set('DATABASE.USERNAME', '');
Application::set('DATABASE.PASSWORD', '');
-Application::set('TEMPLATE.NAME', 'standard');
+Application::set('TEMPLATE.NAME', 'default');
Application::set('TEMPLATE.LANG', Application::get('CORE.LANGUAGE'));
Application::set('ADMIN.LANGUAGE', Application::get('CORE.LANGUAGE'));
?> \ No newline at end of file
diff --git a/readme.md b/readme.md
index 0c7a599..61a687b 100644
--- a/readme.md
+++ b/readme.md
@@ -1,7 +1,7 @@
# PHP7 blogging application
Easy blogging application written with PHP7! The application comes with a fulltext search functionality for posts and with customizable templates and languages. You can build your own template if the default template does not satisfy you.
-![Standard template](https://nmnd.de/file/p/github-blog/standard-template.png)
+![Default template](https://nmnd.de/file/p/github-blog/default-template.png)
## Administration interface
![Administration interface](https://nmnd.de/file/p/github-blog/admin-template-2.png)
diff --git a/template/standard/html/403.php b/template/default/html/403.php
index 337dd44..337dd44 100644
--- a/template/standard/html/403.php
+++ b/template/default/html/403.php
diff --git a/template/standard/html/404.php b/template/default/html/404.php
index 54866a4..54866a4 100644
--- a/template/standard/html/404.php
+++ b/template/default/html/404.php
diff --git a/template/standard/html/feed/item_page.php b/template/default/html/feed/item_page.php
index ff9f209..ff9f209 100644
--- a/template/standard/html/feed/item_page.php
+++ b/template/default/html/feed/item_page.php
diff --git a/template/standard/html/feed/item_post.php b/template/default/html/feed/item_post.php
index 07d400d..07d400d 100644
--- a/template/standard/html/feed/item_post.php
+++ b/template/default/html/feed/item_post.php
diff --git a/template/standard/html/feed/main.php b/template/default/html/feed/main.php
index 588ee02..588ee02 100644
--- a/template/standard/html/feed/main.php
+++ b/template/default/html/feed/main.php
diff --git a/template/standard/html/home.php b/template/default/html/home.php
index 3f6ba47..3f6ba47 100644
--- a/template/standard/html/home.php
+++ b/template/default/html/home.php
diff --git a/template/standard/html/main.php b/template/default/html/main.php
index 46f4f09..46f4f09 100644
--- a/template/standard/html/main.php
+++ b/template/default/html/main.php
diff --git a/template/standard/html/page/item.php b/template/default/html/page/item.php
index 00da4c2..00da4c2 100644
--- a/template/standard/html/page/item.php
+++ b/template/default/html/page/item.php
diff --git a/template/standard/html/page/list.php b/template/default/html/page/list.php
index c4a04b2..c4a04b2 100644
--- a/template/standard/html/page/list.php
+++ b/template/default/html/page/list.php
diff --git a/template/standard/html/page/main.php b/template/default/html/page/main.php
index 1f8e140..1f8e140 100644
--- a/template/standard/html/page/main.php
+++ b/template/default/html/page/main.php
diff --git a/template/standard/html/pagination.php b/template/default/html/pagination.php
index 48e353f..48e353f 100644
--- a/template/standard/html/pagination.php
+++ b/template/default/html/pagination.php
diff --git a/template/standard/html/post/item.php b/template/default/html/post/item.php
index e0d49bd..e0d49bd 100644
--- a/template/standard/html/post/item.php
+++ b/template/default/html/post/item.php
diff --git a/template/standard/html/post/list.php b/template/default/html/post/list.php
index f16fd52..f16fd52 100644
--- a/template/standard/html/post/list.php
+++ b/template/default/html/post/list.php
diff --git a/template/standard/html/post/main.php b/template/default/html/post/main.php
index b84fc63..b84fc63 100644
--- a/template/standard/html/post/main.php
+++ b/template/default/html/post/main.php
diff --git a/template/standard/html/search/main.php b/template/default/html/search/main.php
index 61bd6a5..61bd6a5 100644
--- a/template/standard/html/search/main.php
+++ b/template/default/html/search/main.php
diff --git a/template/standard/html/search/result.php b/template/default/html/search/result.php
index 044afe1..044afe1 100644
--- a/template/standard/html/search/result.php
+++ b/template/default/html/search/result.php
diff --git a/template/standard/html/user/item.php b/template/default/html/user/item.php
index d03d330..d03d330 100644
--- a/template/standard/html/user/item.php
+++ b/template/default/html/user/item.php
diff --git a/template/standard/html/user/list.php b/template/default/html/user/list.php
index 98fa840..98fa840 100644
--- a/template/standard/html/user/list.php
+++ b/template/default/html/user/list.php
diff --git a/template/standard/html/user/main.php b/template/default/html/user/main.php
index 7c19b96..7c19b96 100644
--- a/template/standard/html/user/main.php
+++ b/template/default/html/user/main.php
diff --git a/template/standard/lang/de.php b/template/default/lang/de.php
index bf1b3a4..bf1b3a4 100644
--- a/template/standard/lang/de.php
+++ b/template/default/lang/de.php
diff --git a/template/standard/lang/en.php b/template/default/lang/en.php
index 0c7f557..0c7f557 100644
--- a/template/standard/lang/en.php
+++ b/template/default/lang/en.php
diff --git a/template/standard/rsrc/font-awesome.min.css b/template/default/rsrc/font-awesome.min.css
index 540440c..540440c 100644
--- a/template/standard/rsrc/font-awesome.min.css
+++ b/template/default/rsrc/font-awesome.min.css
diff --git a/template/standard/rsrc/font/font-awesome.woff2 b/template/default/rsrc/font/font-awesome.woff2
index 4d13fc6..4d13fc6 100644
--- a/template/standard/rsrc/font/font-awesome.woff2
+++ b/template/default/rsrc/font/font-awesome.woff2
Binary files differ
diff --git a/template/standard/rsrc/font/ruda-n-400.woff2 b/template/default/rsrc/font/ruda-n-400.woff2
index 6435a0d..6435a0d 100644
--- a/template/standard/rsrc/font/ruda-n-400.woff2
+++ b/template/default/rsrc/font/ruda-n-400.woff2
Binary files differ
diff --git a/template/standard/rsrc/font/ruda-n-700.woff2 b/template/default/rsrc/font/ruda-n-700.woff2
index 0066431..0066431 100644
--- a/template/standard/rsrc/font/ruda-n-700.woff2
+++ b/template/default/rsrc/font/ruda-n-700.woff2
Binary files differ
diff --git a/template/standard/rsrc/logo.png b/template/default/rsrc/logo.png
index 7a62549..7a62549 100644
--- a/template/standard/rsrc/logo.png
+++ b/template/default/rsrc/logo.png
Binary files differ
diff --git a/template/standard/rsrc/main.css b/template/default/rsrc/main.css
index a736b18..a736b18 100644
--- a/template/standard/rsrc/main.css
+++ b/template/default/rsrc/main.css
diff --git a/template/standard/rsrc/main.js b/template/default/rsrc/main.js
index f73d061..f73d061 100644
--- a/template/standard/rsrc/main.js
+++ b/template/default/rsrc/main.js