aboutsummaryrefslogtreecommitdiff
path: root/src/guff/models
diff options
context:
space:
mode:
Diffstat (limited to 'src/guff/models')
-rw-r--r--src/guff/models/tab.cr30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/guff/models/tab.cr b/src/guff/models/tab.cr
index 3fe5133..20dc478 100644
--- a/src/guff/models/tab.cr
+++ b/src/guff/models/tab.cr
@@ -2,7 +2,7 @@ class Guff::TabModel < Guff::Model
SQL = TemplateCache.new({
} of Symbol => String)
- TABS = [{
+ OLD_TABS = [{
"id": "home",
"css": "active",
"icon": "fa-home",
@@ -40,6 +40,34 @@ class Guff::TabModel < Guff::Model
"text": "Configure site settings.",
}]
+ TABS = [{
+ "id": "home",
+ "css": "active",
+ "icon": "fa-home",
+ "name": "Home",
+ "text": "View home tab.",
+ }, {
+ "id": "posts",
+ "icon": "fa-cubes",
+ "name": "Posts",
+ "text": "Manage blog posts, pages, and projects.",
+ }, {
+ "id": "files",
+ "icon": "fa-files-o",
+ "name": "Files",
+ "text": "Manage files.",
+ }, {
+ "id": "users",
+ "icon": "fa-users",
+ "name": "Users",
+ "text": "Manage users and permissions.",
+ }, {
+ "id": "settings",
+ "icon": "fa-cog",
+ "name": "Settings",
+ "text": "Configure site settings.",
+ }]
+
def initialize(models : Models)
super(models, SQL)
end