-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjournal_template.html
More file actions
112 lines (96 loc) · 3.04 KB
/
journal_template.html
File metadata and controls
112 lines (96 loc) · 3.04 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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: 0;
padding: 20px;
background-color: #f9f9f9;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header,
article,
.meta-info,
.content-block {
margin-bottom: 2em;
}
h1,
h2,
h3 {
color: #2c3e50;
}
h1 {
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.meta-info {
background-color: #ecf0f1;
padding: 1.5em;
border-left: 5px solid #3498db;
border-radius: 5px;
}
.references {
font-size: 0.9em;
color: #7f8c8d;
border-top: 1px dashed #bdc3c7;
padding-top: 10px;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>{{ title }}</h1>
<p><strong>Journal:</strong> {{ journalName }} ({{ shortJournalName }})</p>
<p><strong>Authors:</strong> {{ authors }}</p>
<p><strong>Department:</strong> {{ authorsDepartment }}</p>
<p><strong>Email:</strong> <a href="mailto:{{ email }}">{{ email }}</a></p>
</header>
<div class="meta-info">
<h3>Article Details</h3>
<p><strong>Publication Date:</strong> {{ published }} | <strong>Year:</strong> {{ year }}</p>
<p><strong>Volume:</strong> {{ volume }}, <strong>Issue:</strong> {{ issues }}</p>
<p><strong>DOI:</strong> <a href="https://doi.org/{{ doi }}" target="_blank">{{ doi }}</a></p>
<p><strong>ISSN:</strong> {{ ISSN }}</p>
<p><strong>Citation:</strong> {{ citation }}</p>
<p><strong>Parent Link:</strong> <a href="{{ parentLink }}" target="_blank">View Source</a></p>
</div>
<article>
<h2>Introduction</h2>
<p>{{ introduction }}</p>
<h2>Description</h2>
<p>{{ description }}</p>
<h2>Content Analysis</h2>
{% for key, value in content.items() %}
<div class="content-block">
<h3>Section: {{ key }}</h3>
<p>{{ value.subContent }}</p>
<p class="references"><strong>References:</strong> {{ value.references }}</p>
</div>
{% endfor %}
<h2>Conclusion</h2>
<p>{{ conclusion }}</p>
</article>
</div>
</body>
</html>