Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Chapter_2_Go_ChitChat/chitchat/templates/layout.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{{ define "layout" }}

<!DOCTYPE html>
<html lang="en">
<head>
Expand All @@ -23,5 +21,3 @@
<script src="/static/js/bootstrap.min.js"></script>
</body>
</html>

{{ end }}
5 changes: 2 additions & 3 deletions Chapter_2_Go_ChitChat/chitchat/templates/login.layout.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{{ define "layout" }}

<!DOCTYPE html>
<html lang="en">
<head>
Expand All @@ -12,6 +10,8 @@
<link href="/static/css/login.css" rel="stylesheet">
</head>
<body>
{{ template "navbar" . }}

<div class="container">

{{ template "content" . }}
Expand All @@ -23,4 +23,3 @@
</body>
</html>

{{ end }}