Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ description: >- # this means to ignore newlines until "baseurl:"
Asterinas is an open-source community to advance Rust-based OSes
baseurl: "" # the subpath of your site, e.g. /blog
url: asterinas.github.io
github_username: asterinas
github_username: asterinas

# Build settings
theme: minima
Expand Down
13 changes: 13 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@
<link rel="shortcut icon" type="image/x-icon" href="/assets/images/Asterinas icon (in blue).svg">
<link rel="stylesheet" href="/css/post.css" media="screen and (min-width: 769px)">
<link rel="stylesheet" href="/css/post-mobile.css" media="screen and (max-width: 768px)">
<script>
window.MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']],
displayMath: [['$$', '$$'], ['\\[', '\\]']],
processEscapes: true
},
options: {
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
};
</script>
<script defer src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js" id="MathJax-script"></script>
</head>

<body>
Expand Down
215 changes: 215 additions & 0 deletions _posts/2026-07-03-verifying-ostd-soundness.md

Large diffs are not rendered by default.

Binary file removed assets/images/.DS_Store
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/verifying-ostd-soundness/subset.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion css/post-mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -786,4 +786,10 @@ p .language-plaintext {
width: 100%;
height: 100%;
border: 0; /* Ensures no extra border from the iframe */
}
}

mjx-container {
overflow-x: auto;
overflow-y: hidden;
max-width: 100%;
}
9 changes: 8 additions & 1 deletion css/post.css
Original file line number Diff line number Diff line change
Expand Up @@ -831,4 +831,11 @@ p img {
width: 100%;
height: 100%;
border: 0; /* Ensures no extra border from the iframe */
}
}

/* MathJax (LaTeX) — scroll wide formulas on narrow viewports */
mjx-container {
overflow-x: auto;
overflow-y: hidden;
max-width: 100%;
}