change default port and title

master
Joshua Herring 4 weeks ago
parent 3d9b46d230
commit 898a8a8224

@ -19,7 +19,7 @@ func main() {
cgi.Serve(http.HandlerFunc(handler))
} else {
http.HandleFunc("/", handler)
fmt.Fprintln(os.Stderr, "Running in standalone mode on :8080")
http.ListenAndServe(":8080", nil)
fmt.Fprintln(os.Stderr, "Running in standalone mode on :9001")
http.ListenAndServe(":9001", nil)
}
}

@ -5,12 +5,37 @@ const MainFormPage = `<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Faculty Media Report</title>
<title>Faculty Activity Report</title>
<link rel="stylesheet" href="https://unpkg.com/rivet-core@2/css/rivet.min.css">
</head>
<body>
<header class="rvt-header-wrapper">
<!-- Hidden link for keyboard users to skip to main content -->
<a class="rvt-header-wrapper__skip-link" href="#main-content">Skip to main content</a>
<div class="rvt-header-global">
<div class="rvt-container-xl">
<div class="rvt-header-global__inner">
<div class="rvt-header-global__logo-slot">
<a class="rvt-lockup" href="/">
<!-- Trident logo -->
<div class="rvt-lockup__tab">
<svg xmlns="http://www.w3.org/2000/svg" class="rvt-lockup__trident" viewBox="0 0 28 34">
<path d="M-3.34344e-05 4.70897H8.83308V7.174H7.1897V21.1426H10.6134V2.72321H8.83308V0.121224H18.214V2.65476H16.2283V21.1426H19.7889V7.174H18.214V4.64047H27.0471V7.174H25.0614V23.6761L21.7746 26.8944H16.2967V30.455H18.214V33.8787H8.76463V30.592H10.6819V26.8259H5.20403L1.91726 23.6077V7.174H-3.34344e-05V4.70897Z" fill="currentColor"></path>
</svg>
</div>
<!-- Website or application title -->
<div class="rvt-lockup__body">
<span class="rvt-lockup__title">Maurer School of Law</span>
<span class="rvt-lockup__subtitle">Faculty Public Activity Report</span>
</div>
</a>
</div>
</div>
</div>
</div>
</header>
<main class="rvt-container-xl rvt-p-top-xxl rvt-p-bottom-xxl">
<h1 class="rvt-ts-xxl rvt-m-bottom-xxl">Faculty Media Report</h1>
<h1 class="rvt-ts-xxl rvt-m-bottom-xxl">Faculty Public Activity Report</h1>
<form method="post">

Loading…
Cancel
Save