annotate gpp/templates/irc/view.html @ 549:c4696a0cbd3f
Altered the open graph meta tags tag to generate tags for the home page
when None is supplied as a parameter. Updated the home page template to use it.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sun, 15 Jan 2012 13:27:37 -0600 |
parents |
54cbdef18cf4 |
children |
|
rev |
line source |
gremmie@1
|
1 {% extends 'base.html' %}
|
gremmie@1
|
2 {% block title %}IRC Channel Status{% endblock %}
|
gremmie@1
|
3 {% block content %}
|
gremmie@1
|
4 <h2>Who is Chatting in IRC?</h2>
|
gremmie@1
|
5 {% if nicks %}
|
gremmie@1
|
6 <ul>
|
gremmie@1
|
7 {% for nick in nicks %}
|
gremmie@1
|
8 <li>{{ nick.name }}</li>
|
gremmie@1
|
9 {% endfor %}
|
gremmie@1
|
10 </ul>
|
gremmie@1
|
11 <p>Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p>
|
gremmie@1
|
12 {% else %}
|
gremmie@1
|
13 <p><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty at this time.</p>
|
gremmie@1
|
14 {% endif %}
|
bgneal@373
|
15 <p>
|
bgneal@373
|
16 What is IRC? IRC stands for <em>Internet Relay Chat</em>. IRC has been around since the late 1980's, and is a form of real-time Internet text messaging, or chatting. We have our own IRC server here at SurfGuitar101.com, and it is a fun way to talk to your fellow SG101-ers. We often gather in IRC to listen to a podcast or Internet radio show, to plan site events, or to just shoot the breeze. Come on in, all are welcome!
|
bgneal@373
|
17 </p>
|
bgneal@373
|
18 <p>
|
bgneal@373
|
19 <strong>If you are a beginner</strong>, please check out <a href="/forums/topic/5103/">this forum thread</a>, which has some instructions for getting started using Chatzilla, a Firefox addon. We may also do a screencast in the future to explain how to get up and running. Please <a href="/contact/">contact us</a> if you need help getting started.
|
bgneal@373
|
20 </p>
|
bgneal@373
|
21 <p>
|
bgneal@373
|
22 <strong>If you are an IRC pro</strong>, here are the details for getting connected with your favorite IRC client.
|
bgneal@373
|
23 </p>
|
bgneal@373
|
24 <ul>
|
bgneal@373
|
25 <li>Server address: <em>surfguitar101.com</em></li>
|
bgneal@373
|
26 <li>Port: <em>6667</em> (the default)</li>
|
bgneal@373
|
27 <li>Server password: <em>morereverb</em></li>
|
bgneal@373
|
28 <li>Main channel: <em>#ShallowEnd</em></li>
|
bgneal@373
|
29 </ul>
|
gremmie@1
|
30 {% endblock %}
|