M src/notes/index.html => src/notes/index.html +13 -23
@@ 39,13 39,13 @@
</dd>
</dl>
<a href="https://arxiv.org/abs/2108.09298" class="arxiv">
- arXiv:2108.09298
- </a>
+ arXiv:2108.09298</a>
</section>
<section>
<header>
<h3>
- Categorification of Extended Persistence Diagrams
+ Relative Interlevel Set Cohomology
+ Categorifies Extended Persistence Diagrams
</h3>
</header>
<dl>
@@ 57,8 57,7 @@
</dd>
</dl>
<a href="https://arxiv.org/abs/2205.15275" class="arxiv">
- arXiv:2205.15275
- </a>
+ arXiv:2205.15275</a>
<p>
At <a href="https://atmcs.web.ox.ac.uk/home">ATMCS 10</a>
I gave a presentation about this work
@@ 66,8 65,7 @@
(Presently
<a href="/atmcs10/#title">these slides</a> are displayed best in
<a href="https://en.wikipedia.org/wiki/Google_Chrome">
- Google Chrome
- </a>
+ Google Chrome</a>
and other
<a href="https://en.wikipedia.org/wiki/Blink_(browser_engine)">
Blink</a>-based
@@ 91,8 89,7 @@
<section>
<header>
<h3>
- Universality of the Bottleneck Distance
- for Extended Persistence Diagrams
+ Universal Distances for Extended Persistence
</h3>
</header>
<dl>
@@ 107,8 104,7 @@
</dd>
</dl>
<a href="https://arxiv.org/abs/2007.01834" class="arxiv">
- arXiv:2007.01834
- </a>
+ arXiv:2007.01834</a>
</section>
<section>
<header>
@@ 125,21 121,18 @@
</dd>
<dd>
<a href="http://www.geometrie.tugraz.at/bjerkevik/">
- Håvard Bakke Bjerkevik
- </a>
+ Håvard Bakke Bjerkevik</a>
</dd>
<dt>
Versions
</dt>
<dd>
<a href="https://arxiv.org/abs/2112.00720" class="arxiv">
- arXiv:2112.00720
- </a>
+ arXiv:2112.00720</a>
</dd>
<dd>
<a href="https://drops.dagstuhl.de/opus/volltexte/2022/16022/">
- LIPIcs.SoCG.2022.14
- </a>
+ LIPIcs.SoCG.2022.14</a>
</dd>
</dl>
</section>
@@ 190,8 183,7 @@
</dd>
<dd>
<a href="https://hg.sr.ht/~bfluhr/older-notes-join-tree-interleavings">
- Source
- </a>
+ Source</a>
</dd>
<dt> <!-- style="clear:right;"> -->
Internet Archive Snapshots
@@ 255,8 247,7 @@
<time datetime="2018-05-22">May 22, 2018</time>
<a href="https://www.ima.umn.edu/2017-2018/SW5.21-25.18/27339"
class="event">
- Bridging Statistics and Sheaves
- </a>
+ Bridging Statistics and Sheaves</a>
</header>
<dl>
<dt>
@@ 277,8 268,7 @@
<time datetime="2017-04-25">April 25, 2017</time>
<a href="https://www.him.uni-bonn.de/programs/past-programs/past-trimester-programs/acat-2017/spring-school/"
class="event">
- Spring School on Applied and Computational Algebraic Topology
- </a>
+ Spring School on Applied and Computational Algebraic Topology</a>
</header>
<dl>
<dt>
M src/privacy/index.html => src/privacy/index.html +1 -2
@@ 14,8 14,7 @@
In order to make it easier to distinguish links to external websites
from
<a href="https://en.wikipedia.org/wiki/Internal_link">
- internal links
- </a>,
+ internal links</a>,
any external links are suffixed with this <strong>⍆</strong>-symbol,
if your browser
supports <a href="https://en.wikipedia.org/wiki/CSS">CSS</a>.
M util/build.ts => util/build.ts +12 -1
@@ 48,11 48,13 @@ const process = async function(processing_started, to_process) {
processing_started.push(path);
if (path.endsWith('.html')) {
const doc = await getDoc(path, credentials);
+ const head = doc.querySelector('head');
+ const meta_viewport = doc.createElement('meta');
+ meta_viewport.setAttribute('name', 'viewport');
if (getContentLoc(path) === 'webspace') {
// Remove Redundant 'div'
doc.querySelector('div.titlepage')?.remove();
- const head = doc.querySelector('head');
// Fix Character Encoding
doc.querySelector('meta').remove();
const meta = doc.createElement('meta');
@@ 78,7 80,16 @@ const process = async function(processing_started, to_process) {
.forEach(script_tag => script_tag.remove());
head.appendChild(mathjax_script_tags[0]);
head.appendChild(mathjax_script_tags[1]);
+ // Viewport
+ meta_viewport.setAttribute(
+ 'content', 'width=743'
+ );
+ } else {
+ meta_viewport.setAttribute(
+ 'content', 'width=device-width, initial-scale=1'
+ );
}
+ head.appendChild(meta_viewport);
const ref_paths = getRefPaths(
pubignore, processing_started.concat(to_process), path, doc
);