This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
97 lines (87 loc) · 2.89 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta property="og:title" content="موضوع بحث">
<meta property="og:description" content="{% raw message %}">
<meta property="og:image" content="/thumbnails/{{message_hash}}.png">
<!-- <meta property="og:url" content="http://euro-travel-example.com/index.htm"> -->
<meta property="og:site_name" content="پیدا کننده موضوع بحث">
<title>Bahs Mozo Finder</title>
<style>
@font-face {
font-family: 'samim';
src: url('static/font/Samim-Bold.eot');
/* IE9 Compat Modes */
src: url('static/font/Samim.woff2') format('woff2'),
/* Super Modern Browsers */
url('static/font/Samim.woff') format('woff'),
/* Pretty Modern Browsers */
url('static/font/Samim.ttf') format('truetype');
/* Safari, Android, iOS */
}
@font-face {
font-family: 'samim bold';
src: url('static/font/Samim-Bold.eot');
/* IE9 Compat Modes */
src: url('static/font/Samim-Bold.woff2') format('woff2'),
/* Super Modern Browsers */
url('static/font/Samim-Bold.woff') format('woff'),
/* Pretty Modern Browsers */
url('static/font/Samim-Bold.ttf') format('truetype');
/* Safari, Android, iOS */
}
body {
font-family: 'samim', 'b zar', 'Lucida Console', 'Courier New', monospace;
font-size: 26pt;
direction: rtl;
line-height: 1.2em;
}
#content {
width: 760px;
/* text-align: left; */
margin: 1em auto;
}
.permalink {
font-family: 'samim';
font-size: .5em;
color: #ddd;
line-height: 1em;
}
.suggester {
font-size: .5em;
color: #868686;
line-height: 1em;
}
.permalink a {
text-decoration: none;
color: inherit;
}
.permalink a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="content">
<p>{% raw message %}</p>
<p class="suggester">
پیشنهاد شده توسط :
{{ suggester }}
</p>
<p class="permalink" data-html2canvas-ignore>
[<a href="/{{ message_hash }}">لینک ثابت</a>]
</p>
</div>
<!-- <script src="/static/js/html2canvas.min.js"></script>
<script>
html2canvas(document.querySelector('#content'), {
// ignoreElements(element) {
// if (element == document.querySelector('.permalink')) return true;
// }
}).then(function (canvas) {
document.body.appendChild(canvas)
});
</script> -->
</body>
</html>