Skip to content

Commit

Permalink
working on the template
Browse files Browse the repository at this point in the history
  • Loading branch information
donuts-are-good committed Oct 7, 2023
1 parent 15ba48e commit 45d93fc
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 74 deletions.
34 changes: 16 additions & 18 deletions templates/footer.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@

</div>
</div>
</div>
<div class="container">
<div class="row">
<footer class="footer">

<footer class="footer">
<div class="row">
<div class="col">
<img height=60 width=120 src="https://user-images.githubusercontent.com/96031819/218300324-0eba5571-82f9-4a24-af2a-48c8fa935780.svg" alt="bearclaw svg logo" class="img">
</div>
<div class="col"><b>bearclaw</b> is a tiny static site generator <br><small class="text-muted">write your content in markdown and bearclaw converts it to html</small></div>
<div class="col">
<a href="https://github.com/donuts-are-good/bearclaw">source code</a>, <a href="https://github.com/donuts-are-good/bearclaw/blob/master/license">license</a> <br>
<a href="https://github.com/donuts-are-good/bearclaw/blob/master/README.md">readme</a>, <a href="https://github.com/donuts-are-good/bearclaw/issues/new">bugs</a> <br>
</div>
<div class="col text-muted"><span style="color:deeppink">&hearts;</span> <b><a style="text-decoration:none;color:black" href="https://github.com/donuts-are-good/bearclaw/" target="_blank">@donuts-are-good</a></b><br><a href="https://github.com/donuts-are-good/bearclaw/blob/master/license" target="_blank" style="text-decoration:none;color:black">MIT License</a><br>2023</div>
<div class="col">
<img height="60" width="120" src="https://user-images.githubusercontent.com/96031819/218300324-0eba5571-82f9-4a24-af2a-48c8fa935780.svg" alt="bearclaw svg logo" class="img-fluid">
</div>
<div class="col">
<b>bearclaw</b> is a tiny static site generator <br>
<small class="text-muted">write your content in markdown and bearclaw converts it to html</small>
</div>
<div class="col">
<a href="https://github.com/donuts-are-good/bearclaw">source code</a>, <a href="https://github.com/donuts-are-good/bearclaw/blob/master/license">license</a> <br>
<a href="https://github.com/donuts-are-good/bearclaw/blob/master/README.md">readme</a>, <a href="https://github.com/donuts-are-good/bearclaw/issues/new">bugs</a> <br>
</div>
<div class="col text-muted"><span style="color:deeppink">&hearts;</span> <b><a style="text-decoration:none;color:black" href="https://github.com/donuts-are-good/bearclaw/" target="_blank">@donuts-are-good</a></b><br><a href="https://github.com/donuts-are-good/bearclaw/blob/master/license" target="_blank" style="text-decoration:none;color:black">MIT License</a><br>2023</div>
</div>
</footer>
<br><br><br><br>
</footer>
</div>
</div>
<br><br><br><br>
</body>

</html>
112 changes: 56 additions & 56 deletions templates/header.html
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bearclaw</title>
<link rel="icon" type="image/x-icon" href="https://user-images.githubusercontent.com/96031819/218300046-eb4cd215-b8ef-44bb-992b-3ce640be7623.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.banner {
padding-top: 2em;
padding-bottom: 1.2em;
font-size: 4em;
font-weight: 600;
}
img {
max-width: 100%;
height: auto;
}
.info {
font-family: monospace;
font-size: 1.2em;
}
a {
color:deepskyblue;
text-decoration: underline;
text-decoration-style: solid;
text-decoration-thickness: 4px ;
text-decoration-color: #ffeeee;
text-decoration-skip-ink: none;
}
.footer {
padding-top: 8em;
font-family: monospace;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bearclaw</title>
<link rel="icon" type="image/x-icon" href="https://user-images.githubusercontent.com/96031819/218300046-eb4cd215-b8ef-44bb-992b-3ce640be7623.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.banner {
padding-top: 2em;
padding-bottom: 1.2em;
font-size: 4em;
font-weight: 600;
display: flex;
flex-direction: column;
align-items: center;
}

img {
max-width: 100%;
height: auto;
}

.info {
font-family: monospace;
font-size: 1.2em;
}

a {
color: deepskyblue;
text-decoration: underline;
text-decoration-style: solid;
text-decoration-thickness: 4px;
text-decoration-color: #ffeeee;
text-decoration-skip-ink: none;
}

.footer {
padding-top: 8em;
font-family: monospace;
}
</style>
</head>

<body>
<div class="container">
<div class="row">
<div class="col">
<div class="container">
<div class="banner">
<center>
<img src="https://user-images.githubusercontent.com/96031819/218300046-eb4cd215-b8ef-44bb-992b-3ce640be7623.png" height=48px width=48px alt="site logo" class="img-fluid">
</center>
<center>bearclaw blog</center>
<img src="https://user-images.githubusercontent.com/96031819/218300046-eb4cd215-b8ef-44bb-992b-3ce640be7623.png" alt="site logo" class="img-fluid">
bearclaw blog
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-3 info">
<p>πŸ‘‹ Welcome :) <br>
<small>I made this blog with a cool static site generator called <a href="https://github.com/donuts-are-good/bearclaw">bearclaw</a>, try it out!
</p>
</small>
<br><b>links</b>
<br><small><a href="./index.html">🏠 home</a></small>
<br><small><a href="./about.html">πŸ™‹ about</a></small>
<br><small><a href="./feed.xml">πŸ“‘ rss</a></small>

</div>
<div class="col">
<div class="row">
<div class="col-3 info">
<p>πŸ‘‹ Welcome :)<br>
<small>I made this blog with a cool static site generator called <a href="https://github.com/donuts-are-good/bearclaw">bearclaw</a>, try it out!</small>
</p>
<b>links</b>
<br><small><a href="./index.html">🏠 home</a></small>
<br><small><a href="./about.html">πŸ™‹ about</a></small>
<br><small><a href="./feed.xml">πŸ“‘ rss</a></small>
</div>
<div class="col">

0 comments on commit 45d93fc

Please sign in to comment.