35 lines
		
	
	
		
			756 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			756 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
| 		<title>web log of tilde town</title>
 | |
|     <meta charset="UTF-8">
 | |
|     <link rel="icon" href="/favicon.ico">
 | |
|     <link rel="stylesheet" href="blog.css">
 | |
| 	</head>
 | |
| 	<body>
 | |
|     <table>
 | |
|       <tr>
 | |
|         <td>
 | |
|           <h1>a world wide web log for tilde town!</h1>
 | |
|           {{ range .News }}
 | |
|             <h2>{{.Title}}</h2>
 | |
|             <em>{{.Pubdate}}</em>
 | |
|             {{.Content}}
 | |
|           {{ end }}
 | |
|         </td>
 | |
|         <td>
 | |
|           <h1>the town lights</h1>
 | |
| 
 | |
|           <p>a dot is a user. + means they've established a webpage. * means they are logged into
 | |
|           the server.</p>
 | |
| 
 | |
|           <p id="lights">
 | |
|           {{ .Lights }}
 | |
|           <3
 | |
|           </p>
 | |
|         </td>
 | |
|       </tr>
 | |
|     </table>
 | |
| </body>
 | |
| </html>
 |