-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (98 loc) · 3.71 KB
/
index.html
File metadata and controls
139 lines (98 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Blog</title>
<meta name="description" content="Snippets of thoughts.">
<link rel="stylesheet" href="/assets/styles/core.css?v=20240820212204">
<link rel="stylesheet" href="/assets/styles/fontello.css?v=20240820212204">
<link rel="stylesheet" href="/assets/styles/highlighting/default.css?v=20240820212204">
<link rel="canonical" href="/">
<link rel="alternate" type="application/rss+xml" title="Blog" href="/feed.xml">
<!-- Load KaTeX -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css">
<script src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<main class="page-content" aria-label="Content">
<div class="wrapper">
<nav class="site-nav">
<a class="page-link" href="/about/" >About/CV</a>
<a class="page-link" href="/participation.html" >Scientific committees</a>
<a class="page-link" href="/presentations.html" >Talks</a>
<a class="page-link" href="/publications.html" >Publications</a>
<a class="page-link" href="/teaching.html" >Teaching/Supervision</a>
</nav>
<header class="post-header">
<a class="site-title" href="/">Blog</a>
<h1 class="post-title" itemprop="name headline"></h1>
</header>
<div class="post-cover" aria-label="Cover">
<div class="post-cover-wrapper">
<img src="assets/img/vancouver.jpg" alt="" />
</div>
<div class="cover-meta">
</div>
</div>
<ul class="post-list">
</ul>
</div>
<script type="text/javascript">
(function () {
var resize = function () {
this.width = 0.5 * (this.naturalWidth || this.width);
}
Array.prototype.forEach.call(document.querySelectorAll(".half-size, .retina2x"), function(el) {
if (el.naturalWidth) {
resize.call(el);
} else {
el.onload = resize;
}
});
})();
</script>
</main>
<footer class="site-footer">
<div class="wrapper">
<div class="social-links">
<a class="social-link social-github" href="https://github.com/Mallku2">
<i class="icon-github"></i>
</a>
<!-- <a class="social-link social-twitter" href="https://twitter.com/"> -->
<!-- <i class="icon-twitter"></i> -->
<!-- </a> -->
<!-- <a class="social-link social-instagram" href="https://instagram.com/"> -->
<!-- <i class="icon-instagram"></i> -->
<!-- </a> -->
<!-- <a class="social-link social-rss" href="/feed.xml" target="_blank"> -->
<!-- <i class="icon-rss"></i> -->
<!-- </a> -->
</div>
<div class="credits">
KAGAMI, made with <i class="icon-heart"></i> by Kamikat
</div>
</div>
<!-- Parse the Latex divs with Katex-->
<script type="text/javascript">
$("script[type='math/tex']").replaceWith(
function(){
var tex = $(this).text();
return katex.renderToString(tex, {displayMode: false});
});
$("script[type='math/tex; mode=display']").replaceWith(
function(){
var tex = $(this).text();
return katex.renderToString(tex.replace(/%.*/g, ''), {displayMode: true});
});
</script>
</footer>
</body>
</html>