Created
July 1, 2011 14:46
-
-
Save samuelcotterall/1058693 to your computer and use it in GitHub Desktop.
Topic view.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
If the week view relies only on the user entering an H2... | |
--> | |
<td class="content"> | |
<h3 class="weekdates">25 September - 1 October</h3> | |
<div class="summary"> | |
<h2>Intro to Web Site Design</h2> | |
... | |
</div> | |
</td> | |
<!-- | |
...so should the topic view... | |
--> | |
<td class="content"> | |
<div class="summary"> | |
<h2>Intro to Web Site Design </h2> | |
... | |
</div> | |
</td> | |
<!-- | |
...but a best-case scenario is (the date is optional)... | |
--> | |
<td class="content"> | |
<div class="summary"> | |
<p class="weekdates">25 September - 1 October</p> | |
<h2>Intro to Web Site Design </h2> | |
... | |
</div> | |
</td> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment