Skip to content

Commit 12bb7ea

Browse files
author
GitHub Actions
committed
Deploy jmintb/blog to jmintb/blog:gh-pages
0 parents  commit 12bb7ea

11 files changed

+803
-0
lines changed

.gitkeep

Whitespace-only changes.

404.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!doctype html>
2+
<title>404 Not Found</title>
3+
<h1>404 Not Found</h1>

atom.xml

+315
Large diffs are not rendered by default.

elasticlunr.min.js

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta http-equiv="content-type" content="text/html; charset=utf-8">
6+
7+
<!-- Enable responsiveness on mobile devices-->
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9+
10+
11+
12+
<title></title>
13+
14+
15+
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://jmintb.github.io/blog/atom.xml">
16+
17+
18+
19+
<link rel="stylesheet" href="https://jmintb.github.io/blog/site.css">
20+
21+
22+
23+
24+
</head>
25+
26+
<body class="hack dark main container">
27+
28+
29+
30+
31+
32+
<main>
33+
34+
35+
36+
<article itemscope itemtype="http://schema.org/CreativeWork">
37+
<header>
38+
<h2 itemprop="name">
39+
<a href="https://jmintb.github.io/blog/programming-language-1/">Building a programming language with Rust and MLIR part 1: pest the parser</a>
40+
</h2>
41+
<span class="muted">
42+
<svg class="icon i-clock" viewBox="0 0 32 32"
43+
width="16" height="16" fill="none" stroke="currentcolor"
44+
stroke-linecap="round" stroke-linejoin="round" stroke-width="6.25%">
45+
<circle cx="16" cy="16" r="14"/>
46+
<path d="M16 8 L16 16 20 20"/>
47+
</svg>
48+
<span>13 minute read</span>
49+
<svg class="icon i-edit" viewBox="0 0 32 32"
50+
width="16" height="16" fill="none" stroke="currentcolor"
51+
stroke-linecap="round" stroke-linejoin="round" stroke-width="6.25%">
52+
<path d="M30 7 L25 2 5 22 3 29 10 27 Z M21 6 L26 11 Z M5 22 L10 27 Z"/>
53+
</svg>
54+
55+
Published: 2023-07-17
56+
</span>
57+
</header>
58+
59+
</article>
60+
61+
62+
63+
<nav>
64+
<p>
65+
66+
<span>Page 1 of 1</span>
67+
68+
</p>
69+
</nav>
70+
</main>
71+
72+
</body>
73+
74+
</html>

page/1/index.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!doctype html>
2+
<meta charset="utf-8">
3+
<link rel="canonical" href="https://jmintb.github.io/blog/">
4+
<meta http-equiv="refresh" content="0; url=https://jmintb.github.io/blog/">
5+
<title>Redirect</title>
6+
<p><a href="https://jmintb.github.io/blog/">Click here</a> to be redirected.</p>

programming-language-1/index.html

+370
Large diffs are not rendered by default.

robots.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Disallow:
3+
Allow: /
4+
Sitemap: https://jmintb.github.io/blog/sitemap.xml

search_index.en.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sitemap.xml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://jmintb.github.io/blog/</loc>
5+
</url>
6+
<url>
7+
<loc>https://jmintb.github.io/blog/categories/</loc>
8+
</url>
9+
<url>
10+
<loc>https://jmintb.github.io/blog/page/1/</loc>
11+
</url>
12+
<url>
13+
<loc>https://jmintb.github.io/blog/programming-language-1/</loc>
14+
<lastmod>2023-07-17</lastmod>
15+
</url>
16+
<url>
17+
<loc>https://jmintb.github.io/blog/tags/</loc>
18+
</url>
19+
</urlset>

0 commit comments

Comments
 (0)