Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <!-- theme no. 1 by quinncitycreations: provocateur. Please read and follow my terms of use here. http://quinncitycreations.tumblr.com/terms
- Credit:
- -asschlinthemes for their navi theme base
- -nutty-themes for their smooth scrolling tutorial
- -allesio atzeni for their tooltips tutorial
- -zorkat for their scrollbar tutorial
- -->
- <head>
- <!-- this is for the tab info -->
- <title> {title} </title>
- <link rel="shortcut icon" href="{Favicon}">
- <!-- end tab info -->
- <!-- these are fonts -->
- <script src="//use.edgefonts.net/abel;anonymous-pro.js"></script>
- <script src="//use.edgefonts.net/droid-sans.js"></script>
- <!-- this is the script for the tooltips (aka the box that comes up when you hover over a character). dont touch this unless you know what you're doing. -->
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- // Tooltip only Text
- $('.masterTooltip').hover(function(){
- // Hover over code
- var title = $(this).attr('title');
- $(this).data('tipText', title).removeAttr('title');
- $('<p class="tooltip"></p>')
- .text(title)
- .appendTo('body')
- .fadeIn('slow');
- }, function() {
- // Hover out code
- $(this).attr('title', $(this).data('tipText'));
- $('.tooltip').remove();
- }).mousemove(function(e) {
- var mousex = e.pageX + 20; //Get X coordinates
- var mousey = e.pageY + 10; //Get Y coordinates
- $('.tooltip')
- .css({ top: mousey, left: mousex })
- });
- });
- </script>
- <script type="text/javascript">
- $('body').fadeTo(100, 1);
- $(window).load(function() {
- $('body').fadeTo(100, 1);
- });
- $(document).ready(function() {
- setTimeout('$("body").fadeTo(100, 1)', 1000);
- });
- </script>
- <!-- okay so now thats squared away. here is the script for masonry (aka the thing that makes the navi layout nice and neat instead of broken up and weird. again don't touch this unless you know what you're doing. -->
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
- <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
- <script>
- $(function(){
- var $navicon = $('.navicon');
- $navicon.imagesLoaded(function(){
- $navicon.masonry({
- itemSelector: '.navibox',
- });
- });
- $navicon.infinitescroll({
- itemSelector : ".navibox",
- navSelector : "div.pagination",
- nextSelector : ".pagination a#next",
- loadingImg : "",
- loadingText : "<em></em>",
- bufferPx : 10000,
- extraScrollPx: 12000,
- },
- // trigger Masonry as a callback
- function( newElements ) {
- var $newElems = $( newElements ).css({ opacity: 0 });
- // ensure that images load before adding to masonry layout
- $newElems.imagesLoaded(function(){
- $newElems.animate({ opacity: 1 });
- $navicon.masonry( 'appended', $newElems, true );
- });
- }
- );
- });
- </script>
- <!-- okay cool so we're done w the masonry. this last script idk what it's called but it makes the scrolling nice so when you click one of the links it scrolls down the page gracefully instead of just dumping you there. much nicer. as per usual do not touch unless you know what you're doing-->
- <script src="http://static.tumblr.com/whx9ghv/lSGm6k18m/jquery.scrollto-1.4.2-min.js"></script>
- <script src="http://static.tumblr.com/whx9ghv/GJEm6k188/jquery.localscroll-1.2.7-min.js"></script>
- <script>
- $(document).ready(function () {
- $.localScroll();
- });
- </script>
- <!-- aight cool so we're done w all the jquery. now the css which is what makes everything look pretty. u can change stuff here if you want but u dont have to. i put lil notes in it so you can change stuff if u want cuz im nice like that. lmk if u need help tho. -->
- <style>
- ::-webkit-scrollbar {width: 9px; height: 3px; background: #FFFFFF;}
- ::-webkit-scrollbar-thumb {background-color:black ;}
- /* BEGIN MISC CODE */
- body {
- font-family: droid-sans, sans-serif;
- font-size:15px;
- color:black;
- margin-left:10px;
- text-align:justify;
- }
- .sectionheady {
- width:100%;
- height:auto;
- background-color:black;
- display:block;
- color:white;
- font-family: abel, sans-serif;
- font-size:60px;
- text-align:center;
- line-height:75px;
- word-spacing:20px;
- margin-bottom:20px;
- margin-top:25px;
- }
- mark {
- background-color:white;
- color:white;
- }
- .tooltip {
- display:none;
- position:absolute;
- border:1px solid #333;
- background-color:#161616;
- border-radius:5px;
- padding:10px;
- color:#fff;
- font-size:12px Arial;
- font-family:abel, sans-serif;
- width:200px;
- }
- .tooltip-inner {
- white-space: pre-wrap; }
- /* END MISC CODE; BEGIN HEADER CODE */
- .heady {
- width:100%;
- height:auto;
- background-color:black;
- display:block;
- color:white;
- font-family: abel, sans-serif;
- font-size:60px;
- text-align:center;
- line-height:75px;
- word-spacing:20px;
- margin-bottom:20px;
- }
- .heady img {
- width:100%;
- height:300px auto; /*this is where u change the height of the header img if thats something ur interested in */
- display:block;
- }
- .heady a {
- font-size:40px;
- text-decoration:none;
- color:white;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- font-style:normal;
- }
- .heady a:hover {
- letter-spacing:2px;
- text-decoration:underline;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- /* END HEADER CODE; BEGIN BUFFER CODE */
- .buffercon {
- height:200px
- padding:10px;
- display:block;
- margin:auto;
- text-align:center;
- }
- .buffer {
- height:200px;
- width:200px;
- display:inline-block;
- margin-left:40px;
- margin-right:40px;
- }
- .buffer img {
- width:200px;
- height:200px;
- border:3px solid black;
- border-radius:100%;
- }
- /* END BUFFER CODE; BEGIN SUMMARY CODE */
- .info {
- border: 1px solid black;
- width:70%;
- height:auto;
- margin:auto;
- display:block;
- padding:15px;
- padding-bottom:30px;
- }
- .info h1 {
- color:black;
- text-decoration: underline;
- text-align:left;
- font-family:abel, sans-serif;
- font-size: 50px;
- line-height:50px;
- }
- .info a {
- color:black;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- font-size:17px;
- }
- .info a:hover {
- letter-spacing:1px;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- blockquote {
- font-style:italic;
- font-size:20px;
- }
- .stat {
- font-family:abel, sans-serif;
- font-size:20px;
- color:black;
- margin-left:20px;
- }
- .stat b {
- font-size:24px;
- }
- .readme {
- height:20px;
- width:70px;
- background-color:black;
- color:white;
- font-family:abel, sans-serif;
- font-size:20px;
- line-height:20px;
- padding:10px;
- display:inline-block;
- margin:15px;
- }
- .readme a {
- color:white;
- text-decoration:none;
- }
- .readme a:hover {
- color:white;
- text-decoration:underline;
- text-align:center;
- }
- /* END SUMMARY CODE; BEGIN CAST CODE */
- .castcon {
- width:60%;
- height:auto;
- padding:10px;
- display:block;
- margin:auto;
- border:2px solid black;
- text-align:center;
- }
- .char {
- height:300px;
- width:200px;
- display:inline-block;
- margin:15px;
- }
- .char img {
- width:200px;
- height:200px;
- border:3px solid black;
- border-radius:100%;
- }
- .charname {
- background-color:black;
- display:inline-block;
- color:white;
- font-family:abel, sans-serif;
- font-size:20px;
- line-height:20px;
- margin-top:5px;
- padding:5px;
- }
- .charname a {
- color:white;
- text-decoration:none;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- .charname a:hover {
- letter-spacing:1px;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- .charstat {
- background-color:black;
- display:inline-block;
- color:white;
- font-family:abel, sans-serif;
- font-size:15px;
- line-height:15px;
- margin-top:5px;
- padding:5px;
- }
- .charstat a {
- color:white;
- text-decoration:none;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- .charstat a:hover {
- text-decoration:underline;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- /* END CAST CODE; BEGIN GUIDE CODE */
- .chapcon {
- width:70%;
- height:auto;
- padding:10px;
- display:block;
- margin:auto;
- }
- button.accordion {
- background-color: black;
- color: white;
- cursor: pointer;
- padding: 18px;
- width: 100%;
- text-align: left;
- border: none;
- outline: none;
- transition: 0.4s;
- font-family:droid-sans, sans-serif;
- font-size:20px;
- }
- button.accordion:hover {
- background-color: #ddd;
- color:black;
- }
- div.panel {
- background-color: white;
- display: none;
- font-family: abel, sans-serif;
- font-size:20px;
- padding:5px;
- }
- div.panel.show {
- display: block;
- }
- table, th, td {
- border: 1px solid gray;
- border-collapse: collapse;
- margin-top:5px;
- text-align:center;
- }
- td {
- text-align:center;
- }
- .chapcon a {
- color:black;
- }
- /* END CHAPTER CODE; BEGIN NAVI CODE */
- .navicon {
- width:808px;
- margin:auto;
- display:block;
- }
- .naviname {
- text-transform:uppercase;
- text-decoration:underline;
- font-size:18px;
- line-height:12px;
- color:#000;
- z-index:9;
- font-family:abel, sans-serif;
- font-weight:bold;
- margin-bottom:6px;
- }
- .navibox {
- float:left;
- width:150px;
- padding:15px;
- margin:10px;
- background:#FFF;
- border:1px solid black;
- }
- .navibox a {
- text-transform:none;
- display:block;
- margin:2px 0px;
- text-decoration:none;
- color:black;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- .navibox a:hover {
- text-decoration:underline;
- padding-left:10px;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- /* END NAVI CODE; BEGIN CREDIT CODE */
- .itme a {
- color: black;
- font-size:15px;
- position:fixed;
- bottom:10px;
- right:10px;
- text-decoration:none;
- transition-duration:0.5s;
- -moz-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- }
- .itme a:hover {
- text-decoration:none;
- letter-spacing:3px;
- transition-duration:0.5s;
- -moz-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- }
- /* END CREDIT CODE ; BEGIN BACK TO TOP CODE */
- .scrolltotop {
- color:white;
- background-color:black;
- font-family: abel, sans-serif;
- font-size:15px;
- padding:4px;
- right:10px;
- position:fixed;
- bottom:30px;
- }
- .scrolltotop a {
- color:white;
- text-decoration:none;
- }
- </style>
- </head>
- <body>
- <!-- OK this is the html. this is the part u HAVE to touch to make it look how u want it instead of just placeholder images and filler text. again i have put notes to help u alter it but lmk if you need help and dont feel embarrassed cause the first time i tried to use a page theme i couldnt figure any of it out and i got so frustrated i started crying so im not gonna judge i promise -->
- <!-- HEADER SECTION -->
- <div class="heady">
- <div class="name">Story Title</div>
- <img src="http://placehold.it/1000x300" height="300" width="1000"><!-- here's where the header image goes. It looks best at 300 by 1000. if you changed the height up in the css, change it here too for it to work.-->
- <a href="#"><a name="top">Home</a></a>
- <a href="#">Ask</a>
- <a href="#about">About</a>
- <a href="#cast">Cast</a>
- <a href="#chapters">Chapters</a>
- <a href="#navi">Explore</a>
- </div>
- <!-- END HEADER SECTION -->
- <!-- BUFFER IMAGES -->
- <div class="buffercon">
- <div class="buffer">
- <img src="http://placehold.it/200x200"> <!-- here's where the buffer images go. they should be 200 x 200. -->
- </div>
- <div class="buffer">
- <img src="http://placehold.it/200x200">
- </div>
- <!-- if you want more images, copy paste from here -->
- <div class="buffer">
- <img src="http://placehold.it/200x200">
- </div>
- <!-- to here. the images will center automatically. just don't put too many.-->
- </div> <!-- don't put any buffer images after this div!!! -->
- <!-- END BUFFER IMAGES -->
- <!-- SUMMARY SECTION -->
- <div class="sectionheady"><a name="about">About</a></div>
- <div class="info">
- <h1>Summary</h1>
- <p><b>Cupcake</b> <i>ipsum </i> <s>dolor</s> sit amet <a href="#">soufflé</a> cookie ice cream powder. Dessert soufflé jujubes cotton candy wafer. Donut oat cake caramels chocolate chocolate tiramisu chupa chups cake. Chupa chups chocolate apple pie croissant cake icing. Pie pastry ice cream jujubes danish tootsie roll gummies. Cake gingerbread tart lollipop ice cream marshmallow.</p>
- <blockquote>Chocolate bar chocolate macaroon marshmallow liquorice tootsie roll. Soufflé bonbon bonbon marzipan. Pastry oat cake pudding bonbon powder bear claw pie cookie. Cotton candy carrot cake ice cream icing soufflé jelly beans tiramisu. Lemon drops jelly cupcake sweet sweet croissant. Jelly brownie sweet gingerbread. Marshmallow chocolate bar liquorice marshmallow jujubes. Brownie cookie icing cookie cake cupcake bonbon tiramisu cotton candy.</blockquote>
- <p>Gummies powder lollipop cotton candy. Chocolate bar bonbon sugar plum jelly cake cupcake. Muffin pudding bonbon sweet roll gingerbread fruitcake. Tootsie roll jelly danish. Brownie cheesecake biscuit gummi bears topping wafer dessert. Marzipan danish apple pie jujubes.
- Pie apple pie jelly-o brownie cotton candy donut. Icing powder liquorice macaroon sugar plum danish donut cupcake carrot cake. Halvah sesame snaps tootsie roll jelly danish chocolate cake wafer. Sesame snaps chupa chups candy canes caramels sweet roll liquorice chocolate bar. Biscuit brownie pastry danish. Candy oat cake bear claw ice cream danish. Toffee gingerbread donut tart apple pie.</p>
- <!-- this is how you do a spoiler. this makes it so the reader has to highlight the text in order to read it. if you don't want the little hover box thing, just take everything out so it's just <mark></mark> with nothing else.-->
- <p><mark title="highlight this text to read the spoiler." class="masterTooltip">Biscuit sesame snaps liquorice biscuit.</mark> Brownie cupcake ice cream. Caramels wafer cupcake carrot cake oat cake donut wafer gingerbread sesame snaps. Sweet roll macaroon cookie tootsie roll powder liquorice dragée carrot cake. Oat cake liquorice candy canes candy canes. Topping pie danish cake. Gingerbread chocolate carrot cake jujubes gummies.</p>
- <h1>Stats</h1>
- <div class="stat"><b>Characters:</b> A bunch of characters</div>
- <div class="stat"><b>Ships:</b> A whole lot of oteeps</div>
- <div class="stat"><b>Content Warnings:</b> As many are as necessary. </div>
- <h1>Read</h1>
- <center>
- <div class="readme"><a href="#">Link 1</a></div>
- <div class="readme"><a href="#">Link 2</a></div>
- <div class="readme"><a href="#">Link 3</a></div>
- <div class="readme"><a href="#">Link 4</a></div>
- <div class="readme"><a href="#">Link 5</a></div>
- </center>
- </div> <!-- don't put any summary-related things after this div!!! -->
- <!-- END SUMMARY SECTION -->
- <!-- CAST SECTION -->
- <div class="sectionheady"><a name="cast">Cast</a></div>
- <div class="castcon">
- <!-- WHOLE CHARACTER CODE -->
- <div class="char">
- <img class="masterTooltip" src="http://placehold.it/200x200" title ="EYYY so here's your description. it can be as long or as short as you want, the box will change to accomodate it!"><center><div class="charname">
- Character Name</div></center>
- <center><div class="charstat">Subtitle</div></center>
- </div>
- <!--END WHOLE CHARACTER CODE -->
- <!-- WHOLE CHARACTER CODE -->
- <div class="char">
- <img class ="masterTooltip" src="http://placehold.it/200x200" title="the image size is 200 by 200 pixels, as u can tell (thanks placeholdit ur a star.)">
- <center><div class="charname">Character Name</div></center>
- <center><div class="charstat">Subtitle</div></center>
- </div>
- <!--END WHOLE CHARACTER CODE -->
- <!-- WHOLE CHARACTER CODE -->
- <div class="char">
- <img class="masterTooltip" src="http://placehold.it/200x200" title="unfortunately there's no way to style the text in this description, or have multiple paragraphs. the brave scientists at quinncitycreations are working on this as we speak but in the meantime we'll all have to make do. My apologies for the inconvenience.">
- <center><div class="charname">Character Name</div></center>
- <center><div class="charstat">Subtitle</div></center>
- </div>
- <!--END WHOLE CHARACTER CODE -->
- <!-- WHOLE CHARACTER CODE -->
- <div class="char">
- <img class="masterTooltip" src="http://placehold.it/200x200" title="the character name can also be a link btw! you can link to their character page or tag or whatever you want. the subtitle can also be a link if you want. the coding is different on hover because making the subtitle spread out the way the name does can make it weird. speaking of which...">
- <center><div class="charname"><a href="#">Character Name</a></div></center>
- <center><div class="charstat"><a href="#">Subtitle</a></div></center>
- </div>
- <!--END WHOLE CHARACTER CODE -->
- <!-- WHOLE CHARACTER CODE -->
- <div class="char">
- <img class="masterTooltip" src="http://placehold.it/200x200" title="try to keep the name and subtitles short okay? otherwise they'll break into two lines and it'll mess up the layout. i mean if you like the messed up layout then by all means im not ur mom you can do what you want. but personally i like the grid layout so that's my advice to you.">
- <center><div class="charname">Character Name</div></center>
- <center><div class="charstat">Subtitle</div></center>
- </div>
- <!--END WHOLE CHARACTER CODE -->
- <!-- WHOLE CHARACTER CODE -->
- <div class="char">
- <img class="masterTooltip" src="http://placehold.it/200x200" title="Oh and hey, look at that! you can have as many characters as you want, even if the number isn't a multiple of three! it just centers itself. how bout that.">
- <center><div class="charname">Character Name</div></center>
- <center><div class="charstat">Subtitle</div></center>
- </div>
- <!--END WHOLE CHARACTER CODE -->
- <!-- WHOLE CHARACTER CODE -->
- <div class="char">
- <img class="masterTooltip" src="http://placehold.it/200x200" title="anyways while i've still got your attention: if you're using this as an all-in-one page and not a story page, here's some ideas for what you could use this section for: friends, networks, links to other blogs you have, links to other social media accounts you have, any projects you're working on.">
- <center><div class="charname">Character Name (?)</div></center>
- <center><div class="charstat">Subtitle</div></center>
- </div>
- <!--END WHOLE CHARACTER CODE -->
- </div> <!-- don't put any characters after this div!!! -->
- <!-- END CAST SECTION -->
- <!-- CHAPTER GUIDE SECTION -->
- <div class="sectionheady"><a name="chapters">Chapter Guide</a></div>
- <div class="chapcon">
- <button class="accordion">Prologue</button>
- <div class="panel">
- <table style="width:100%">
- <tr>
- <th>Published</th>
- <th>Timeline</th>
- <th>POV</th>
- <th>Read</th>
- </tr>
- <tr>
- <td>Date</td>
- <td>Point in Canon</td>
- <td>POV Character</td>
- <td>
- <a href="http://tumblr.com">WP</a> | <a href="http://tumblr.com">FFN</a> | <a href="http://tumblr.com">AO3</a></td>
- </tr>
- </table>
- <p><b>Summary:</b> Hey guys! So this is what the chapter guide looks like. Note that you don't have to use the table up there, or format it like this. It's totally up to you what you put in these panels. This is just a suggestion.</p>
- <p><b>Characters:</b> If you're writing a series, you can also use this as a series guide instead of a chapter guide. (like "book one" "book two" instead of "chapter one" "chapter two." You get it.)</p>
- <p><b>Content Warnings:</b> Unfortunately, as of this writing, there's no way to have panels within panels, so you can't have, like "book one" and then within that "chapter one" "chapter two" etc etc. This, too, I am working on (and am close to solving!!! stay tuned!!!) but in the meantime, I hope you enjoy this anyways.</p>
- </div>
- <button class="accordion">Chapter One</button>
- <div class="panel">
- <table style="width:100%">
- <tr>
- <th>Published</th>
- <th>Timeline</th>
- <th>POV</th>
- <th>Read</th>
- </tr>
- <tr>
- <td>Date</td>
- <td>Point in Canon</td>
- <td>POV Character</td>
- <td>Site | Site | Site</td>
- </tr>
- </table>
- <p><b>Summary:</b> OH forgot to mention this but you can pretty much have as many of these bad boys are you want. There's notes in the code to help you add more. If you still have trouble tho, lmk!</p>
- <p><b>Characters:</b> Also, if you're using this as a character page, you could use this section for different verses maybe?</p>
- <p><b>Content Warnings:</b> this is off-topic but I think "secondhand embarassment" should be a content warning.</p>
- </div>
- <!-- for a new panel, copy all the way from here -->
- <button class="accordion">Chapter One</button>
- <div class="panel">
- <table style="width:100%">
- <tr>
- <th>Published</th>
- <th>Timeline</th>
- <th>POV</th>
- <th>Read</th>
- </tr>
- <tr>
- <td>Date</td>
- <td>Point in Canon</td>
- <td>POV Character</td>
- <td>Site | Site | Site</td>
- </tr>
- </table>
- <p><b>Summary:</b> Insert your favorite fanfic tropes here.</p>
- <p><b>Characters:</b> Sam Wilson, Dean Winchester, Joe Jonas, Nicky Fury, Will Graham, fuck idk...slime man</p>
- <p><b>Content Warnings:</b> Did you know Dean Winchester/Joe Jonas fanfiction exists. Isn't life amazing.</p>
- </div>
- <!-- to here! -->
- </div> <!-- don't put any panels after this div!! -->
- <!-- NAVI SECTION-->
- <div class="sectionheady"><a name="navi">Explore</a></div>
- <div class="navicon">
- <!-- BOX 1 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 2 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 3 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 4 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 5 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 6 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 7 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 8 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 9 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 10 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 11 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- <!-- BOX 11 -->
- <div class="navibox">
- <div class="naviname">Misc</div>
- <a href="/tagged/tag-link">Tag Name</a>
- </div>
- </div> <!-- don't put anything after this div!!! -->
- <!-- END NAVI SECTION -->
- </body>
- <div class="scrolltotop"><a href="#top">Ascend</a></div>
- <!-- DON"T TOUCH THE CREDIT! -->
- <div class="itme"><a href="http://quinncitycreations.tumblr.com">
- ♠
- ♥
- ♣
- ♦
- </a></div>
- <!-- this is the script for the chapter guide. don't ask me why it has to be down here, computers are frickin weird. anyways as usual don't touch this. -->
- <script>
- var acc = document.getElementsByClassName("accordion");
- var i;
- for (i = 0; i < acc.length; i++) {
- acc[i].onclick = function(){
- this.classList.toggle("active");
- this.nextElementSibling.classList.toggle("show");
- }
- }
- </script>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment