aboutsummaryrefslogtreecommitdiff
path: root/pandoc/template.html
diff options
context:
space:
mode:
authorheqnx <root@heqnx.com>2025-05-20 16:15:06 +0300
committerheqnx <root@heqnx.com>2025-05-20 16:15:06 +0300
commit02d19684796f9efcb06efd1b31e8537fd95ef2ad (patch)
tree467a21616396ac1326a151eae3505fbca88fcbff /pandoc/template.html
parent777abefdf48fb452885b7ed28948f96592f6dd64 (diff)
downloadcve-poc-mon-main.tar.gz
cve-poc-mon-main.zip
removed and updated filesHEADmain
Diffstat (limited to 'pandoc/template.html')
-rw-r--r--pandoc/template.html261
1 files changed, 0 insertions, 261 deletions
diff --git a/pandoc/template.html b/pandoc/template.html
deleted file mode 100644
index 191de87..0000000
--- a/pandoc/template.html
+++ /dev/null
@@ -1,261 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <link rel="icon" href="data:,">
- <title>cve-poc-mon</title>
- <style>
- @font-face {
- font-family: 'MorePerfectDOSVGA';
- src: url('assets/MorePerfectDOSVGA.ttf') format('truetype');
- }
- ::-webkit-scrollbar {
- display: none;
- }
- * {
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- body {
- background-color: black;
- color: #bbbbbb;
- font-family: 'MorePerfectDOSVGA', monospace;
- font-size: 14px;
- line-height: 1.6;
- max-width: 1000px;
- margin: 0 auto;
- padding: 20px;
- }
- .title-box {
- text-align: left;
- border: 1px solid #333;
- padding: 15px;
- margin-bottom: 10px;
- display: flex;
- flex-wrap: wrap;
- align-items: flex-start;
- gap: 10px;
- }
- .title-box h1 {
- color: #bbbbbb;
- font-size: 18px;
- margin: 0;
- font-weight: normal;
- flex: 1 1 100%;
- }
- .title-box .links {
- display: flex;
- gap: 15px;
- flex-wrap: wrap;
- }
- .title-box .rss-link,
- .title-box .repo-link {
- color: #bbbbbb;
- text-decoration: none;
- font-size: 14px;
- }
- .title-box .rss-link:hover,
- .title-box .repo-link:hover {
- color: #ffffff;
- }
- .title-box .count {
- color: #bbbbbb;
- font-size: 14px;
- }
- .content {
- text-align: left;
- border: 1px solid #333;
- padding: 15px;
- }
- .content ul {
- list-style: none;
- padding: 0;
- margin: 0;
- }
- .content li {
- margin: 20px 0;
- }
- .content li a {
- color: #bbbbbb;
- text-decoration: none;
- border-bottom: 1px solid #333;
- display: block;
- margin-bottom: 5px;
- }
- .content li a:hover {
- color: #ffffff;
- border-bottom-color: #bbbbbb;
- }
- .content li span,
- .content li p {
- color: #bbbbbb;
- text-align: justify;
- display: block;
- }
- a {
- color: #bbbbbb;
- text-decoration: none;
- }
- a:hover {
- color: #ffffff;
- }
- pre, code {
- color: #bbbbbb;
- font-family: 'MorePerfectDOSVGA', monospace;
- }
- .search-box {
- margin-top: 15px;
- flex: 1 1 100%;
- }
- .search-box input {
- background-color: #222;
- border: 1px solid #333;
- color: #bbbbbb;
- font-family: 'MorePerfectDOSVGA', monospace;
- font-size: 14px;
- padding: 8px;
- width: 100%;
- box-sizing: border-box;
- outline: none;
- }
- .search-box input:focus {
- border-color: #bbbbbb;
- }
- .search-box input::placeholder {
- color: #666;
- opacity: 1;
- }
- .video-background {
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- z-index: -1;
- overflow: hidden;
- }
- .video-background video {
- width: 100vw;
- height: 100vh;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%) skew(8deg);
- object-fit: cover;
- opacity: 0.15;
- }
- .back-to-top {
- position: fixed;
- top: 20px;
- right: 20px;
- background-color: rgba(0, 0, 0, 0.5);
- color: #bbbbbb;
- border: 1px solid #333;
- padding: 8px 12px;
- font-family: 'MorePerfectDOSVGA', monospace;
- font-size: 12px;
- cursor: pointer;
- display: none;
- z-index: 1000;
- text-align: center;
- text-decoration: none;
- }
- .back-to-top:hover {
- background-color: rgba(0, 0, 0, 0.7);
- color: #ffffff;
- border-color: #bbbbbb;
- }
- @media (max-width: 600px) {
- body {
- padding: 15px;
- }
- .title-box,
- .content {
- padding: 10px;
- }
- .title-box h1 {
- font-size: 16px;
- }
- .title-box .links {
- flex-direction: column;
- gap: 8px;
- }
- .title-box .rss-link,
- .title-box .repo-link,
- .title-box .count {
- font-size: 12px;
- }
- .search-box {
- margin-top: 10px;
- }
- .back-to-top {
- top: 15px;
- right: 15px;
- padding: 6px 10px;
- font-size: 10px;
- }
- }
- @media (max-width: 400px) {
- .title-box {
- flex-direction: column;
- }
- .search-box input {
- font-size: 12px;
- padding: 6px;
- }
- .back-to-top {
- top: 10px;
- right: 10px;
- }
- }
- </style>
-</head>
-<body>
- <div class="video-background">
- <video autoplay muted loop playsinline>
- <source src="/assets/background.webm" type="video/webm">
- </video>
- </div>
- <button class="back-to-top" onclick="scrollToTop()">back to top</button>
- <div class="title-box">
- <h1>$title$</h1>
- <div class="links">
- <a href="$rss_url$" target="_blank" class="rss-link">[rss feed]</a>
- <span class="count">[stats: $count$ repos, total size $size$, updated $date$]</span>
- </div>
- <div class="search-box">
- <input type="text" id="searchInput" placeholder="search this page">
- </div>
- </div>
- <div class="content">
- $body$
- </div>
- <script>
- document.getElementById('searchInput').addEventListener('input', function() {
- const query = this.value.toLowerCase();
- const items = document.querySelectorAll('.content li');
- items.forEach(item => {
- const text = item.textContent.toLowerCase();
- item.style.display = text.includes(query) ? '' : 'none';
- });
- });
-
- const backToTopButton = document.querySelector('.back-to-top');
- window.addEventListener('scroll', () => {
- if (window.scrollY > 300) {
- backToTopButton.style.display = 'block';
- } else {
- backToTopButton.style.display = 'none';
- }
- });
-
- function scrollToTop() {
- window.scrollTo({
- top: 0,
- behavior: 'smooth'
- });
- }
- </script>
-</body>
-</html>