Skip to content

Commit

Permalink
fix: Modernize layout template
Browse files Browse the repository at this point in the history
  • Loading branch information
uyjulian committed Jul 12, 2024
1 parent c310927 commit 05e6fd8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<style type="text/css">
<style>
h1 { background-color: #536799; color: white; }
h2 { background-color: #536799; color: white; }
h2 { text-align: right; }
h3 { background-color: #536799; color: white; }
h3:before { content: "■ "; }
h4 { background-color: #536799; color: white; }
Expand All @@ -25,7 +25,8 @@
</style>
</head>
<body>
<h2>{{ page.title }}</h2>
<h2 style="text-align: right; margin: 0;">{{ page.title }}</h2>
<br />
{{ content }}
</body>
</html>

0 comments on commit 05e6fd8

Please sign in to comment.