-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomic.html
More file actions
82 lines (67 loc) · 3.07 KB
/
comic.html
File metadata and controls
82 lines (67 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Start cookieyes banner --> <script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/9a0b31a5d5f7a4068ec5d7fe/script.js"></script> <!-- End cookieyes banner -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-06L56VXPC1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-06L56VXPC1');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
<title>Terra Prima - comic</title>
</head>
<body>
<div class="subPage clearfix">
<div class="writeHeader"></div>
<!-- remove <! > to turn on auto scroll to the top of the comic when a new page is loaded-->
<!-- <div id="showComic"> -->
<!-- write the title of the page. -->
<div class="writePageTitle"></div>
<!-- write top navigation -->
<div class="writeNav"></div>
<!-- write the current page of your comic -->
<div class="writePageClickable"></div>
<!-- write bottom navigation -->
<div class="writeNav"></div>
</div>
<div id="authorNotes">
<h2>Azi's Notes</h2>
<!-- write the author notes for the current page-->
<div class="writeAuthorNotes"></div>
</div>
<div class="disqusBox">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://terra-prima-com.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
<div class="writeFooter"></div>
</div>
<!-- every js script is called here.-->
<script src="js/comic_settings.js" defer></script>
<script src="js/comic_show.js" defer></script>
<script src="js/comic_header.js" defer></script>
<script src="js/comic_footer.js" defer></script>
</body>
</html>