distributor/views/docViewer.ejs

46 lines
794 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= title %></title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
padding: 0;
background-color: #121212;
color: #e0e0e0;
}
h1, h2, h3, h4, h5, h6 {
color: #ffffff;
}
a {
color: #1e90ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
pre {
background: #1e1e1e;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
color: #dcdcdc;
}
code {
background: #1e1e1e;
padding: 2px 4px;
border-radius: 3px;
color: #dcdcdc;
}
</style>
</head>
<body>
<div class="markdown-content">
<%- htmlContent %>
</div>
</body>
</html>