-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add a proverbs insights index page
- Loading branch information
1 parent
8aa4901
commit 44afc93
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Proverbs Insights</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif&family=Ma+Shan+Zheng&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="/assets/css/style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Proverbs Insights</h1> | ||
<nav> | ||
<a href="/languages/" class="category-button">Programming Languages</a> | ||
<a href="/quotes/" class="category-button">Quotes</a> | ||
</nav> | ||
<div id="quoteDisplay" class="quote-card fade-in"> | ||
<p class="quote-text">Welcome to Proverbs Insights, a collection of wisdom from programming languages and great thinkers.</p> | ||
</div> | ||
</div> | ||
<script src="/assets/js/script.js"></script> | ||
</body> | ||
</html> |