From c80d178a57f1bcb520fd25a9e148374f85214f45 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 7 May 2013 15:49:24 +0000 Subject: [PATCH] duhsign for category home page --- app.js | 23 ++++++++++++++++++----- public/css/style.less | 26 ++++++++++++++++++++++++++ public/templates/home.tpl | 23 ++++++++++++++--------- src/categories.js | 14 +++++++++++++- 4 files changed, 71 insertions(+), 15 deletions(-) diff --git a/app.js b/app.js index 7fbd6ae288..39edfd5d6b 100644 --- a/app.js +++ b/app.js @@ -33,20 +33,33 @@ global.modules = modules; console.log('Setting up default categories...'); modules.categories.create({ - 'name': 'General', - 'description': 'A place to talk about whateeeever you want' + 'name': 'Announcements', + 'description': 'A place to talk about whateeeever you want', + 'blockclass': 'category-purple', + 'icon' : 'icon-bullhorn' + }); + + modules.categories.create({ + 'name': 'General Discussion', + 'description': 'A place to talk about whateeeever you want', + 'blockclass': 'category-purple', + 'icon' : 'icon-comment' }); modules.categories.create({ 'name': 'NodeBB Development', - 'description': 'Bugs? Dont worry, we dont read this thread, so post them here.' + 'description': 'Bugs? Dont worry, we dont read this thread, so post them here.', + 'blockclass': 'category-purple', + 'icon' : 'icon-github-alt' }); modules.categories.create({ - 'name': 'Design Create Play', - 'description': 'In future an example of how a hidden category should look like.' + 'name': 'Blogs', + 'description': 'In future an example of how a hidden category should look like.', + 'blockclass': 'category-purple', + 'icon' : 'icon-pencil' }); } else console.log('Good.'); diff --git a/public/css/style.less b/public/css/style.less index c280a59b97..0c2c357186 100644 --- a/public/css/style.less +++ b/public/css/style.less @@ -296,4 +296,30 @@ footer.footer { .account-bio-label{ display:inline-block; width:100px; +} + + + +.category-icon { + width: 100%; + height: 90px; + text-align: center; + border-radius: 5px; + margin: 0; + padding-top:20px; + cursor: pointer; +} +.category-row h4 { + font-weight: 700; + text-align: center; + color: #555; +} +.category-row a { + text-decoration: none; + border: 0; +} + +.category-purple { + background: #ab1290; + color: white; } \ No newline at end of file diff --git a/public/templates/home.tpl b/public/templates/home.tpl index 1b9bb49ffa..b99a57954e 100644 --- a/public/templates/home.tpl +++ b/public/templates/home.tpl @@ -1,9 +1,14 @@ -

Categories

- \ No newline at end of file + +
+ + + +
\ No newline at end of file diff --git a/src/categories.js b/src/categories.js index 830bdae6a4..545538d377 100644 --- a/src/categories.js +++ b/src/categories.js @@ -15,6 +15,8 @@ var RDB = require('./redis.js'), // Topic Info RDB.set('cid:' + cid + ':name', data.name); RDB.set('cid:' + cid + ':description', data.description); + RDB.set('cid:' + cid + ':icon', data.icon); + RDB.set('cid:' + cid + ':blockclass', data.blockclass); RDB.set('cid:' + cid + ':slug', slug); RDB.set('category:slug:' + slug + ':cid', cid); @@ -29,11 +31,15 @@ var RDB = require('./redis.js'), RDB.lrange('categories:cid', 0, -1, function(cids) { var name = [], description = [], + icon = [], + blockclass = [], slug = []; for (var i=0, ii=cids.length; i