Skip to content

Commit 6441138

Browse files
committed
created by 'bundle exec jekyll build'
1 parent 595414b commit 6441138

9 files changed

Lines changed: 514 additions & 0 deletions

File tree

_site/archive/index.html

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<!DOCTYPE html>
2+
<html lang="en"><head>
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.8.0 -->
6+
<title>Devlog Archive 📚 | IntScription</title>
7+
<meta name="generator" content="Jekyll v4.4.1" />
8+
<meta property="og:title" content="Devlog Archive 📚" />
9+
<meta name="author" content="Kartik Sanil" />
10+
<meta property="og:locale" content="en_US" />
11+
<meta name="description" content="My journey building projects, AI apps, and refining my craft in public." />
12+
<meta property="og:description" content="My journey building projects, AI apps, and refining my craft in public." />
13+
<link rel="canonical" href="https://intscription.github.io/devlog/archive/" />
14+
<meta property="og:url" content="https://intscription.github.io/devlog/archive/" />
15+
<meta property="og:site_name" content="IntScription" />
16+
<meta property="og:type" content="website" />
17+
<meta name="twitter:card" content="summary" />
18+
<meta property="twitter:title" content="Devlog Archive 📚" />
19+
<script type="application/ld+json">
20+
{"@context":"https://schema.org","@type":"WebPage","author":{"@type":"Person","name":"Kartik Sanil"},"description":"My journey building projects, AI apps, and refining my craft in public.","headline":"Devlog Archive 📚","url":"https://intscription.github.io/devlog/archive/"}</script>
21+
<!-- End Jekyll SEO tag -->
22+
<link rel="stylesheet" href="/devlog/assets/main.css"><link type="application/atom+xml" rel="alternate" href="https://intscription.github.io/devlog/feed.xml" title="IntScription" /></head>
23+
<body><header class="site-header" role="banner">
24+
25+
<div class="wrapper"><a class="site-title" rel="author" href="/devlog/">IntScription</a><nav class="site-nav">
26+
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
27+
<label for="nav-trigger">
28+
<span class="menu-icon">
29+
<svg viewBox="0 0 18 15" width="18px" height="15px">
30+
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
31+
</svg>
32+
</span>
33+
</label>
34+
35+
<div class="trigger"><a class="page-link" href="/devlog/archive/">Devlog Archive 📚</a><a class="page-link" href="/devlog/logs/2025-07-17/"></a><a class="page-link" href="/devlog/logs/2025-07-18/"></a><a class="page-link" href="/devlog/">Hello Devs 📓</a></div>
36+
</nav></div>
37+
</header>
38+
<main class="page-content" aria-label="Content">
39+
<div class="wrapper">
40+
<h1 id="-devlog-archive">📚 Devlog Archive</h1>
41+
42+
<p>All my devlog entries, neatly organized.</p>
43+
44+
<hr />
45+
46+
<h2 id="-2025-logs">📅 2025 Logs</h2>
47+
<ul>
48+
<li><a href="/devlog/logs/2025-07-18/">2025-07-18 — Devlog #2</a></li>
49+
<li><a href="/devlog/logs/2025-07-17/">2025-07-17 — Devlog #1</a></li>
50+
</ul>
51+
52+
<hr />
53+
54+
<blockquote>
55+
<p>This archive will grow over time as I continue logging my journey.</p>
56+
</blockquote>
57+
58+
59+
</div>
60+
</main><footer class="site-footer h-card">
61+
<data class="u-url" href="/devlog/"></data>
62+
63+
<div class="wrapper">
64+
65+
<h2 class="footer-heading">IntScription</h2>
66+
67+
<div class="footer-col-wrapper">
68+
<div class="footer-col footer-col-1">
69+
<ul class="contact-list">
70+
<li class="p-name">Kartik Sanil</li></ul>
71+
</div>
72+
73+
<div class="footer-col footer-col-2"><ul class="social-media-list"></ul>
74+
</div>
75+
76+
<div class="footer-col footer-col-3">
77+
<p>My journey building projects, AI apps, and refining my craft in public.</p>
78+
</div>
79+
</div>
80+
81+
</div>
82+
83+
</footer>
84+
</body>
85+
86+
</html>

_site/assets/css/main.scss

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
body {
2+
background-color: #1a1b26; // Tokyonight background
3+
color: #c0caf5; // Foreground text
4+
font-family: 'Fira Code', monospace;
5+
line-height: 1.6;
6+
}
7+
8+
h1,
9+
h2,
10+
h3 {
11+
color: #7aa2f7; // Tokyonight blue
12+
}
13+
14+
a {
15+
color: #7dcfff; // Tokyonight cyan
16+
text-decoration: none;
17+
}
18+
19+
a:hover {
20+
color: #bb9af7; // Tokyonight purple on hover
21+
}
22+
23+
code {
24+
background-color: #292e42;
25+
color: #c0caf5;
26+
padding: 0.2rem 0.4rem;
27+
border-radius: 4px;
28+
font-family: 'Fira Code', monospace;
29+
}
30+
31+
pre {
32+
background-color: #292e42;
33+
color: #c0caf5;
34+
padding: 1rem;
35+
border-radius: 6px;
36+
overflow-x: auto;
37+
}
38+
39+
.nav-links {
40+
display: flex;
41+
justify-content: space-between;
42+
margin-top: 2rem;
43+
font-size: 0.9rem;
44+
}
45+
46+
.nav-links a {
47+
color: #7dcfff;
48+
text-decoration: none;
49+
}
50+
51+
.nav-links a:hover {
52+
color: #bb9af7;
53+
}

_site/assets/main.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)