mxblog/index.html

25 lines
839 B
HTML
Raw Permalink Normal View History

2023-12-22 17:14:38 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Blog powered by Matrix">
2024-10-29 15:50:40 +03:00
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
2023-12-22 17:14:38 +03:00
<title>Blog</title>
</head>
<body>
<table class="table is-bordered is-fullwidth"></table>
2023-12-22 17:14:38 +03:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/3.0.6/purify.min.js" integrity="sha512-H+rglffZ6f5gF7UJgvH4Naa+fGCgjrHKMgoFOGmcPTRwR6oILo5R+gtzNrpDp7iMV3udbymBVjkeZGNz1Em4rQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="blog.js"></script>
2024-04-16 22:19:14 +03:00
<style>
2024-10-29 15:50:40 +03:00
tr, article, p {
2024-04-16 22:19:14 +03:00
white-space: normal;
overflow-wrap: break-word;
text-wrap: break-word;
2024-10-29 15:50:40 +03:00
word-break: break-word;
2024-04-16 22:19:14 +03:00
}
2024-10-29 15:50:40 +03:00
2024-04-16 22:19:14 +03:00
</style>
2023-12-22 17:14:38 +03:00
</body>
2023-12-22 17:32:21 +03:00
</html>