Took 33 minutes
This commit is contained in:
Krzysztof 'KrzysiekSiemv' Smaga
2023-04-25 11:02:52 +02:00
parent 41fa19344b
commit e9216f1710
5 changed files with 37 additions and 6 deletions
+8 -6
View File
@@ -2,12 +2,14 @@
namespace BlogEngine {
class Dictionary {
public $page_tags = [
"posts" => "{POSTS}",
"links" => "{LINKS}",
"tags" => "{TAGS}",
"title" => "{TITLE}",
"author" => "{AUTHOR}",
"description" => "{DESCRIPTION}"
"{POSTS}" => "",
"{LINKS}" => "",
"{TAGS}" => "",
"{TITLE}" => "Tytuł",
"{AUTHOR}" => "lorem",
"{DESCRIPTION}" => "",
"{JS}" => "",
"{CSS}" => ""
];
}
}