All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m29s
24 lines
537 B
HTML
24 lines
537 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>PDF Viewer - {{ file_name }}</title>
|
|
<style>
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: #525659;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<embed src="{{ pdf_url }}" type="application/pdf" width="100%" height="100%" title="Embedded PDF Viewer" />
|
|
</body>
|
|
|
|
</html> |