aboutsummaryrefslogtreecommitdiff
path: root/src/guff/models/tab.cr
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2016-04-02 23:18:22 -0400
committerPaul Duncan <pabs@pablotron.org>2016-04-02 23:18:22 -0400
commitd8bc1820893d343359a5a8d973cac1db761cffde (patch)
treec208b81f45021af61fefca2c7017b804fefc782c /src/guff/models/tab.cr
parent6ff8fd4e02cb962c9e2d1e90691324c67f58c4e8 (diff)
downloadold-guff-d8bc1820893d343359a5a8d973cac1db761cffde.tar.bz2
old-guff-d8bc1820893d343359a5a8d973cac1db761cffde.zip
simplify tabs
Diffstat (limited to 'src/guff/models/tab.cr')
-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