zz
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>{{.BlogTitle}}</title>
|
||||
</head>
|
||||
<h1>{{.BlogTitle}}</h1>
|
||||
<h1><a href="/proxy/8080/">{{.BlogTitle}}</a></h1>
|
||||
<body>
|
||||
<h2>{{.Title}}</h2>
|
||||
<div>
|
||||
|
@@ -4,14 +4,27 @@
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>{{.Title}}</title>
|
||||
<style>
|
||||
a:link {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:visited {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: orange;
|
||||
text-decoration: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>{{.Title}}</h1>
|
||||
<h1><a href="/proxy/8080/">{{.Title}}</a></h1>
|
||||
{{range .Posts}}
|
||||
<article>
|
||||
<a href=/proxy/8080/post/{{ .Id }}>
|
||||
<h2>{{.Title}}</h2>
|
||||
</a>
|
||||
<h2><a href=/proxy/8080/post/{{ .Id }}>{{.Title}}</a></h2>
|
||||
|
||||
<div>
|
||||
{{.HTML}}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user