Skip to content

Commit

Permalink
Fix HTML Pages
Browse files Browse the repository at this point in the history
Fix#15
  • Loading branch information
ar-siddiqui committed Jun 29, 2023
1 parent bb00828 commit fad7dcd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions public/views/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
<head>
<title>Process-API</title>
<meta charset="UTF-8">
<style>
body {
font-family: sans-serif;
}

h1 {
margin-bottom: 1rem;
}
</style>
</head>

<body>
Expand Down
4 changes: 2 additions & 2 deletions public/views/logs.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@
<body>
<h1>API Logs</h1>
<table>
{{range .APILog}}
{{range .APILogs}}
<tr>
<td>{{.}}</td>
</tr>
{{end}}
</table>
<h1>Container Logs</h1>
<table>
{{range .ContainerLog}}
{{range .ContainerLogs}}
<tr>
<td>{{.}}</td>
</tr>
Expand Down

1 comment on commit fad7dcd

@ar-siddiqui
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix #15

Please sign in to comment.