Files
go-grip/templates/layout.html
Christoph Herb 40fa2a7b86 feat: Update go-grip to use golangci-lint and improve build process
This commit updates the go-grip project to use golangci-lint for code quality checks, improves the build process by adding a check for formatting errors, and enhances the release workflow by using the new golangci-lint action.

The changes address issues with code quality and maintainability, ensuring that the project adheres to best practices. The improved build process reduces the risk of formatting errors, while the updated release workflow ensures that the project is properly formatted before being released.
2024-10-09 23:48:08 +02:00

21 lines
523 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>go-grip - markdown preview</title>
<link rel="icon" type="image/x-icon" href="/static/images/favicon.ico">
{{if .Darkmode }}
<link rel="stylesheet" href="/static/css/github-markdown-dark.css">
{{else}}
<link rel="stylesheet" href="/static/css/github-markdown-light.css">
{{end}}
</head>
<body class="markdown-body entry-content container-lg">
<div style="padding: 32px;">
<div class="">
{{ .Content }}
</div>
</div>
</body>
</html>