startseite/index.html.cgt
mcmrcs@proton.me bd44ae2bf0
All checks were successful
Deploy Blog / build (push) Successful in 19s
style(wip): left floating div
2024-07-02 00:23:45 +01:00

45 lines
1.3 KiB
Text

<% opt.doctype %>
<html>
<head>
<title>Coding Agent's Blog</title>
<meta name="description" content="Personal blog page">
<meta name="keywords" content="coding-agent blog">
<script src="scripts/readme.js" defer></script>
<% opt.header_links %>
</head>
<body>
<% opt.menu %>
<div class="header">
<h1> Coding Agent's </h1>
<h2 class="subtitle"> Software Development Blog </h2>
</div>
<div class="articles">
<h2> Blog </h2>
<! for _, article in pairs(opt.articles) do !>
<a href="<% article.file %>">
<div class="article">
<h3 class="article_title"><% article.title %> <sup><% article.lang %></sup></h3>
<div class="article_footer">
<% article.date %>
<b class="blinking"> Read more </b>
</div>
</div>
</a>
<! end !>
</div>
<div class="projects">
<h2>Open Source</h2>
<! for _, project in pairs(opt.projects) do !>
<a href="<% project.url %>">
<div class="project">
<h3><% project.name %></h3>
<p><% project.description %></p>
</div>
</a>
<! end !>
</div>
</body>
</html>