31 lines
899 B
Cheetah
31 lines
899 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
border: 1px solid black;
|
|
width: 100%;
|
|
background-color: azure;
|
|
}
|
|
table th {
|
|
border: 1px solid black;
|
|
background-color: aquamarine;
|
|
}
|
|
table td {
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>Feed of your friend's news</h2>
|
|
{{ range $post:=.posts }}
|
|
<a><b>{{ $post.Author }} wrote at {{ $post.Created }}:</b></a><br/>
|
|
<a><b>{{ $post.Subject }}</b><br/><a>{{ $post.Body }}</a>
|
|
<br/><br/>
|
|
{{ end }}
|
|
|
|
<h2>Available actions:</h2>
|
|
<input type="button" onclick="location.href='/';" value="Home" />
|
|
</body>
|
|
</html> |