Website: greatly improved materials viewing experience
This commit is contained in:
parent
4b6498ede3
commit
d5a06032b0
406 changed files with 159269 additions and 184 deletions
40
website/problem-sets/index.html
Normal file
40
website/problem-sets/index.html
Normal file
|
@ -0,0 +1,40 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Applied Cryptography (CMPS 297AD/396AI): Problem Sets Viewer</title>
|
||||
<meta name="description" content="Learn modern cryptography principles and applications in this comprehensive course covering cryptographic theory, practical implementations, and real-world security systems at the American University of Beirut." />
|
||||
<meta name="keywords" content="applied cryptography, AUB, American University of Beirut, cryptography course, encryption, cryptographic protocols, cybersecurity education, CMPS 297AD, CMPS 396AI" />
|
||||
<meta name="author" content="Nadim Kobeissi" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, height=device-height">
|
||||
<meta name="robots" content="index, follow" />
|
||||
<link rel="canonical" href="https://appliedcryptography.page/" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="Applied Cryptography (CMPS 297AD/396AI) — American University of Beirut" />
|
||||
<meta property="og:description" content="Learn modern cryptography principles and applications in this comprehensive course covering cryptographic theory, practical implementations, and real-world security systems at the American University of Beirut." />
|
||||
<meta property="og:url" content="https://appliedcryptography.page" />
|
||||
<meta property="og:image" content="https://appliedcryptography.page/res/img/og.jpg" />
|
||||
<meta property="og:locale" content="en_US" />
|
||||
<link rel="icon" href="/res/img/favicon.png" type="image/png" />
|
||||
<link rel="apple-touch-icon" href="/res/img/favicon.png" sizes="180x180" />
|
||||
<link rel="icon" href="/res/img/favicon.png" sizes="32x32" type="image/png" />
|
||||
<link rel="icon" href="/res/img/favicon.png" sizes="16x16" type="image/png" />
|
||||
<link rel="preload" as="image" href="/res/img/cedar.webp" />
|
||||
<script defer data-domain="appliedcryptography.page" data-api="https://restless-block-0a1e.symbolicsoft.workers.dev/oil-ocean/event" src="https://restless-block-0a1e.symbolicsoft.workers.dev/emerald-hill/script.js"></script>
|
||||
<script>
|
||||
window.addEventListener(`load`, () => {
|
||||
const anchor = window.location.hash.substring(1);
|
||||
const viewer = document.getElementById(`viewer`);
|
||||
if (anchor && /^\d{1,3}$/.test(anchor)) {
|
||||
viewer.src = `../view/?file=/problem-sets/problem-set-${anchor}.pdf`;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<iframe id="viewer" src="" style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden;"></iframe>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue