Skip to content

Commit

Permalink
Deploy septum/septum.me to septum/septum.me:gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Oct 3, 2023
0 parents commit a756269
Show file tree
Hide file tree
Showing 9 changed files with 115 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!doctype html>
<title>404 Not Found</title>
<h1>404 Not Found</h1>
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
septum.me
Binary file added CV.pdf
Binary file not shown.
43 changes: 43 additions & 0 deletions blog/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<html>
<head>
<title>Zola</title>
</head>
<body>
<div class="container">
<h1>Welcome to Zola!</h1>
<p>
You're seeing this page because we couldn't find a template to render.
</p>
<p>
To modify this page, create a <b>section.html</b> file in the templates directory or
<a href="https://www.getzola.org/documentation/themes/installing-and-using-themes/" target="_blank">install a theme</a>.
<br>
You can find what variables are available in this template in the <a href="https:&#x2F;&#x2F;www.getzola.org&#x2F;documentation&#x2F;templates&#x2F;pages-sections&#x2F;#section-variables" target="_blank">documentation</a>.
</p>
</div>
<footer>
<a href="https://www.getzola.org/documentation/getting-started/cli-usage/" target="_blank">Get started with Zola</a>
</footer>
<style>
html {
line-height: 1.5;
}
h1 {
margin-bottom: 2rem;
}
.container {
font-family: "sans-serif";
text-align: center;
margin-top: 20vh;
padding: 2rem;
background: #e9e9e9;
}
footer {
position: fixed;
width: 100%;
bottom: 1rem;
text-align: center;
}
</style>
</body>
</html>
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1"
/>

<title>septum.me</title>
<meta name="description" content="A website that contains my journey in software engineering" />
<link rel="shortcut icon" href="https://septum.me/images/logo.png" />
<link rel="canonical" href="https://septum.me" />

<meta name="og:title" content="septum.me" />
<meta property="og:description" content="A website that contains my journey in software engineering" />
<meta property="og:site_name" content="septum.me" />
<meta property="og:locale" content="en-us" />
<meta name="og:url" content="https://septum.me" />
<meta name="og:type" content="website" />
<meta name="og:image" content="https://septum.me/images/logo.png" />

<meta name="twitter:title" content="septum.me" />
<meta name="twitter:description" content="A website that contains my journey in software engineering" />
<meta name="twitter:site" content="@septum___" />
<meta name="twitter:card" content="summary" />
<meta
name="twitter:image"
content="https://septum.me/images/logo.png"
/>
<meta name="twitter:image:alt" content="septum's logo" />

<link rel="stylesheet" href="main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap"
rel="preload"
as="style"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
</head>

<body>
<section>
<div>
<h1>septum.me</h1>
</div>
</section>
</body>
</html>
1 change: 1 addition & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
body{color:#ffffff;font-family:Inter;background-color:#1A3A59}
4 changes: 4 additions & 0 deletions robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
User-agent: *
Disallow:
Allow: /
Sitemap: https://septum.me/sitemap.xml
9 changes: 9 additions & 0 deletions sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://septum.me/</loc>
</url>
<url>
<loc>https://septum.me/blog/</loc>
</url>
</urlset>

0 comments on commit a756269

Please sign in to comment.