Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
SYSCOMM - helping technicians to improve their social skills
SYSCOMM is a brochure-ware site for an Austrian institute aimed at technicians who want to improve their interpersonal skills.
I’ve had fun with the calendar of upcoming training events. Textpattern was well up to the task. They also donated <zem_contact_radio />
to zem_contact_reborn
Opinions welcome!
Last edited by wet (2006-03-14 16:32:12)
Offline
Re: SYSCOMM - helping technicians to improve their social skills
Wet,
Nice job.
I really like the way you styled the 2 level navigation as well.
Care to share how you did that? I am always curious about how people approach that differently.
The calendar looks really nice. Is that done with images and css?
The site is simple (even to the point of plain), but I really think that works for the audience.
Well done.
Matthew
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#3 2006-03-14 19:05:32
- NyteOwl
- Member
- From: Nova Scotia, Canada
- Registered: 2005-09-24
- Posts: 539
Re: SYSCOMM - helping technicians to improve their social skills
I like the design, though (as I and others have for many many years) resent the stereotyping that implies that technical people are less socially skilled than anyone else.
Obsolescence is just a lack of imagination. / 36-bits Forever! / #include <disclaimer.h>;
Offline
Re: SYSCOMM - helping technicians to improve their social skills
ma_smith wrote:
I really like the way you styled the 2 level navigation as well.
Level one is an <ul>
on sections, manually coded inside a form:
<ul id="nav">
<li <txp:if_section name=",article">class="active"</txp:if_section>>
<txp:link_to_home>Home </txp:link_to_home>
<txp:if_section name=",article"><ul id="nav-2"><txp:article_custom sortby="custom_1" sortdir="asc" section="article" listform="nav-sub" /></ul></txp:if_section></li>
<li <txp:if_section name="seminare,seminarkalender">class="active"</txp:if_section>><txp:zem_link section="seminare">Seminare </txp:zem_link>
<txp:if_section name="seminare,seminarkalender">
<ul id="nav-2"><txp:article_custom sortby="custom_1" sortdir="asc" section="seminare" listform="nav-sub" /></ul>
[...]
Level 2 is an <txp:article_custom />
list using the form nav-sub
:
<li<txp:php>
# $pretext contains article properties according to current URL
# compare to *current* article in nav list
global $thisarticle; global $pretext;
$isactive = ($pretext['id'] == $thisarticle['thisid']) ? ' class="active"' : '';
echo $isactive;
</txp:php>><txp:zem_link title="%s"><txp:chh_if_data><txp:custom_field name="menu-text" /><txp:else /><txp:title /></txp:chh_if_data> </txp:zem_link></li>
Presentation is done with :hover
and the above determined .active
class on <li>
elements, just peek into the style sheet.
The calendar looks really nice. Is that done with images and css?
Plain CSS, a small plugin renders the posting date as a series of <spans>
for day, month, year. Hunt for datewidget
in the style sheet.
Last edited by wet (2006-03-17 09:21:22)
Offline
Re: SYSCOMM - helping technicians to improve their social skills
NyteOwl wrote:
I like the design, though (as I and others have for many many years) resent the stereotyping that implies that technical people are less socially skilled than anyone else.
I agree, though SYSCOMM apparently makes their living by providing to that niche.
Offline
Re: SYSCOMM - helping technicians to improve their social skills
wet, thanks for sharing with us, learn something new everyday here.
NyteOwl, I think that technical people are/can be less social with beings from the analog world. But get us in a room with other geeks and we can’t stop talking, so a site like SYSCOMM proves to be a helpful resource.
We Love TXP . TXP Themes . TXP Tags . TXP Planet . TXP Make
Offline
#7 2006-05-30 17:51:25
- cabanadigital
- Member
- Registered: 2006-05-25
- Posts: 11
Re: SYSCOMM - helping technicians to improve their social skills
Hi Wet, where can I found that “small plugin”
I really like that styled way for date
Offline
Re: SYSCOMM - helping technicians to improve their social skills
It’s a plugin I wrote for this project and which is not publicly available by now.
Anyway, you could achieve the same effects for the posting date by simply joining a series of <txp:posted format="..." />
tags and embed them into either a span
or a div
element. The exact procedure is over here.
Last edited by wet (2006-05-31 04:14:03)
Offline
#9 2006-05-30 18:15:49
- cabanadigital
- Member
- Registered: 2006-05-25
- Posts: 11
Re: SYSCOMM - helping technicians to improve their social skills
That’s nice, thank you so much. You’re really fast answering
Offline
#10 2006-05-30 20:18:08
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: SYSCOMM - helping technicians to improve their social skills
@cabanadigital:
Ah, now I understand ;) I’ll remove your other post.
Offline
#11 2006-05-31 02:27:16
- net-carver
- Archived Plugin Author
- Registered: 2006-03-08
- Posts: 1,648
Re: SYSCOMM - helping technicians to improve their social skills
Beautiful presentation on the dates Wet, nice styling.
— Steve
Offline