Small typo and aesthetic fixes

This commit is contained in:
gmemstr 2017-09-11 11:46:43 -07:00
parent 41dcc302c3
commit 102b4211b0
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@
<label for="title">Episode Title</label>
<input type="text" id="title" name="title">
<label for="description">Episode Description</label>
<textarea name="description" id="description" cols="50" rows="10" style="resize: none;"></textarea>
<textarea name="description" id="description" cols="100" rows="20" style="resize: none;"></textarea>
<label for="file">Media File</label>
<input type="file" id="file" name="file">
<label for="date">Publish Date</label>

View file

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CMS Loading</title>
<title>Pogo Loading</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/assets/styles.css">

View file

@ -17,7 +17,7 @@ import (
"github.com/spf13/viper"
)
// Prints out contects of feed.rss
// Prints out contents of feed.rss
func RssHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/rss+xml")
w.WriteHeader(http.StatusOK)