gimme20

j0k3z - September 17, 2006 - 14:51

http://www.gimme20.com

I just stumbled into this website. Looks like some fine drupal work.

I cant beleive that nobody

j0k3z - September 21, 2006 - 03:08

I cant beleive that nobody has shown interest in this website. It is a really nice setup and I am impressed.

I agree

elv - September 21, 2006 - 14:02

It's nicely designed, the interface is clean with a good attention to details.

Nice site

astariza - September 21, 2006 - 14:56

I have already spotted that site and it's in my del.icio.us bookmarks in the drupal tag.

I think it's very well designed and very intuitive. :)

ahh shucks....

jpwillms - October 17, 2006 - 08:19

Thanks you guys! Any other feedback you can give us is more than appretiated! I love showing that drupal can shine.

Jordan | Gimme20.com

Your forums look great. How

j0k3z - October 17, 2006 - 08:48

Your forums look great. How did you display the last post made in one of the columns on the forum index page?

little custom job

jpwillms - November 7, 2006 - 23:43

Basically, I made a themeing function that renders a row (an inline forum category as I called it in my code)

function theme_inline_forum($forum)
{

$new_topics = _forum_topics_unread($forum->tid, $user->uid);
$forum->old_topics = $forum->num_topics - $new_topics ;

if (!$user->uid)
{
  $new_topics = 0;
}

$result = db_query_range("SELECT n.nid FROM {node} n INNER JOIN {term_node} tn ON (tn.nid = n.nid) WHERE tn.tid = %d AND n.type='forum' AND n.status = 1 ORDER by n.changed DESC", $forum->tid, 0, 1);

if ( db_num_rows($result)>0 )
{

$row = db_fetch_object($result);

$nodeLoad = node_load($row->nid);

$last_post['link'] = l(limit_length($nodeLoad->title,20,'..'), 'node/' . $nodeLoad->nid);
$last_post['userlink'] = l($nodeLoad->name, 'node/' . $nodeLoad->uid);
$last_post['time'] = format_interval(time() - $nodeLoad->created);

}

Then I go on rendering it as I would like to. Anyways -- it is a totally custom job. Want the whole chunk of code?

jordan

This site is fantastic! Love

blazes - November 8, 2006 - 00:20

This site is fantastic! Love it!

mobile content

thomjjames - November 8, 2006 - 22:16

hi, first up its a really nice site, like the design and the concept of the site, really cool!

i noticed you have mobile interaction (http://www.gimme20.com/mobile), i was wondering how you set this up (modules and service provider??)?? i want to add the ability for users to text images to galleries on my site but i don't know where to begin looking so any help would be brilliant.

thanks
Tom

www.adrenalinehub.com

drupal mobile theme

jpwillms - November 22, 2006 - 23:15

Actually, it is just the standard drupal mobile theme that is publically available.

Check these out:

http://drupal.org/node/26357
http://drupal.org/project/mobile

Enjoy!

J

Forum

SirMoby - November 25, 2006 - 15:35

That is a very nice site. I like the forum layout. Is that Drupal's forum or did you use VBulletin? The integration is very sweet.

 
 

Drupal is a registered trademark of Dries Buytaert.