Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- for @stag. thank you!!! <3
- ----->
- <script type="text/javascript">
- // <![CDATA[
- var colours=new Array('{color:hearts 1}', '{color:hearts 2}', '{color:hearts 3}', '{color:hearts 4}', '{color:hearts 5}', '{color:hearts 6}'); // colours of the hearts
- var minisize=16; // smallest size of hearts in pixels
- var maxisize=28; // biggest size of hearts in pixels
- var hearts=66; // maximum number of hearts on screen
- var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
- /*****************************
- *JavaScript Love Heart Cursor*
- * (c)2013+ mf2fm web-design *
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- *****************************/
- var x=ox=400;
- var y=oy=300;
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var herz=new Array();
- var herzx=new Array();
- var herzy=new Array();
- var herzs=new Array();
- var kiss=false;
- if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addRVLoadEvent(mwah);
- function mwah() { if (document.getElementById) {
- var i, heart;
- for (i=0; i<hearts; i++) {
- heart=createDiv("auto", "auto");
- heart.style.visibility="hidden";
- heart.style.zIndex=(over_or_under=="over")?"1001":"0";
- heart.style.color=colours[i%colours.length];
- heart.style.pointerEvents="none";
- if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
- else heart.style.opacity=0.75;
- heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
- document.body.appendChild(heart);
- herz[i]=heart;
- herzy[i]=false;
- }
- set_scroll();
- set_width();
- herzle();
- }}
- function herzle() {
- var c;
- if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- ox=x;
- oy=y;
- for (c=0; c<hearts; c++) if (herzy[c]===false) {
- herz[c].firstChild.nodeValue=String.fromCharCode(9829);
- herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
- herz[c].style.top=(herzy[c]=y-minisize)+"px";
- herz[c].style.fontSize=minisize+"px";
- herz[c].style.fontWeight='normal';
- herz[c].style.visibility='visible';
- herzs[c]=minisize;
- break;
- }
- }
- for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
- setTimeout("herzle()", 40);
- }
- document.onmousedown=pucker;
- document.onmouseup=function(){clearTimeout(kiss);};
- function pucker() {
- ox=-1;
- oy=-1;
- kiss=setTimeout('pucker()', 100);
- }
- function blow_me_a_kiss(i) {
- herzy[i]-=herzs[i]/minisize+i%2;
- herzx[i]+=(i%5-2)/5;
- if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
- herz[i].style.visibility="hidden";
- herzy[i]=false;
- }
- else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
- else {
- if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
- herz[i].style.top=herzy[i]+"px";
- herz[i].style.left=herzx[i]+"px";
- }
- }
- function break_my_heart(i) {
- var t;
- herz[i].firstChild.nodeValue=String.fromCharCode(9676);
- herz[i].style.fontWeight='bold';
- herzy[i]=false;
- for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
- setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
- }
- document.onmousemove=mouse;
- function mouse(e) {
- if (e) {
- y=e.pageY;
- x=e.pageX;
- }
- else {
- set_scroll();
- y=event.y+sdown;
- x=event.x+sleft;
- }
- }
- window.onresize=set_width;
- function set_width() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)=='number' && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- window.onscroll=set_scroll;
- function set_scroll() {
- if (typeof(self.pageYOffset)=='number') {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
- sdown=document.body.scrollTop;
- sleft=document.body.scrollLeft;
- }
- else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
- sleft=document.documentElement.scrollLeft;
- sdown=document.documentElement.scrollTop;
- }
- else {
- sdown=0;
- sleft=0;
- }
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height;
- div.style.width=width;
- div.style.overflow="hidden";
- div.style.backgroundColor="transparent";
- return (div);
- }
- // ]]>
- </script>
- <script src="https://kit.fontawesome.com/f936906ae0.js" crossorigin="anonymous"></script>
- <link href="https://static.tumblr.com/0podkko/oDSpg7y88/photosets.css" rel="stylesheet">
- <meta charset="utf-8">
- <meta https-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <title>{Title}</title>
- <link rel="shortcut icon" href="{image:favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
- <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script>
- <script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
- <link href="https://fonts.googleapis.com/css?family=Kosugi+Maru|Short+Stack" rel="stylesheet">
- <link rel="stylesheet" href="https://static.tumblr.com/p6yopnt/PxJr3vu6k/scrollbar.css">
- <script>
- function gatherData(images, arr) {
- for (let i = 0; i < images.length; i++) {
- let currentData = {
- "width": images[i].getAttribute('data-width'),
- "height": images[i].getAttribute('data-height'),
- "low_res": images[i].getAttribute('data-lowres'),
- "high_res": images[i].getAttribute('data-highres')
- };
- arr.push(currentData);
- }
- }
- function getIndex(elem) {
- let i = 0;
- while( (elem = elem.previousElementSibling) != null ) i++;
- return i;
- }
- function lightbox(elem) {
- let currentPhotoset = elem.parentNode;
- let photosetPhotos = currentPhotoset.getElementsByTagName('div');
- let data = [];
- gatherData(photosetPhotos, data);
- Tumblr.Lightbox.init(data, getIndex(elem) + 1);
- }
- </script>
- <meta name="image:favicon" content=""/>
- <meta name="image:sidebar img" content=""/>
- <meta name="image:background" content=""/>
- <meta name="image:floatie" content=""/>
- <meta name="image:cursor" content="https://64.media.tumblr.com/tumblr_m2wj74KrAK1qfamg6.gif"/>
- <meta name="color:border" content=""/>
- <meta name="color:background" content=""/>
- <meta name="color:desc background" content=""/>
- <meta name="color:links background" content=""/>
- <meta name="color:footer background" content=""/>
- <meta name="color:post background" content="#fff"/>
- <meta name="color:nav background" content="#fff"/>
- <meta name="color:box shadow" content=""/>
- <meta name="color:text" content="#000"/>
- <meta name="color:links" content=""/>
- <meta name="color:links hover" content=""/>
- <meta name="color:links shadow" content=""/>
- <meta name="color:tooltip background" content="#fff"/>
- <meta name="color:tooltip text" content="#000"/>
- <meta name="color:selection background" content=""/>
- <meta name="color:selection text" content="#000"/>
- <meta name="color:hearts 1" content="#000">
- <meta name="color:hearts 2" content="#000">
- <meta name="color:hearts 3" content="#000">
- <meta name="color:hearts 4" content="#000">
- <meta name="color:hearts 5" content="#000">
- <meta name="color:hearts 6" content="#000">
- <meta name="if:redirect" content=""/>
- <meta name="if:hover blur" content=""/>
- <meta name="if:captions" content="1"/>
- <meta name="if:background cover" content=""/>
- <meta name="select:border style" content="solid"/>
- <meta name="select:border style" content="dashed"/>
- <meta name="select:border style" content="dotted"/>
- <meta name="select:border style" content="double"/>
- <meta name="select:border style" content="inset"/>
- <meta name="select:border style" content="outset"/>
- <meta name="select:border style" content="groove"/>
- <meta name="select:border style" content="ridge"/>
- <meta name="text:font size" content="20"/>
- <meta name="text:font" content="arial"/>
- <meta name="text:border width" content="4"/>
- <meta name="text:description" content="description"/>
- <meta name="text:link 1" content="i"/>
- <meta name="text:link 1 url" content="/"/>
- <meta name="text:link 2" content="ii"/>
- <meta name="text:link 2 url" content="/"/>
- <meta name="text:link 3" content="iii"/>
- <meta name="text:link 3 url" content="/"/>
- <meta name="text:redirect" content=""/>
- </head>
- <style type="text/css">
- body, *, a, a:hover { cursor:url({image:cursor}), auto; }
- .embed_iframe{
- width: 100%;
- }
- .tmblr-full img{
- box-sizing:border-box !important;
- }
- ::selection {
- background: {color:selection background};
- color:{color:selection text};
- }
- ::-moz-selection {
- background: {color:selection background};
- color:{color:selection text};
- }
- #s-m-t-tooltip{
- margin: 20px 0 0 20px;
- padding: 5px;
- max-width: 300px;
- background-color:{color:tooltip background};
- color:{color:tooltip text};
- border:{text:border width}px {select:border style} {color:border};
- z-index: 9999;
- }
- @font-face{
- font-family: 'Magica';
- src: url(https://static.tumblr.com/p6yopnt/Qkiqnu0r5/theheart.ttf);
- }
- @font-face{
- font-family: 'DEAD END';
- src: url(https://static.tumblr.com/pvnotae/DzVqdg2j5/dead_end.ttf);
- }
- @font-face{
- font-family: 'Decibil';
- src: url(https://static.tumblr.com/pvnotae/kwwqdg2pw/decibel_2.ttf);
- }
- @font-face{
- font-family: 'Aachen';
- src: url(https://static.tumblr.com/pvnotae/YIoqdg2yp/aachen-bold-opentype.otf);
- }
- body {
- margin:0px;
- background:{color:background};
- background-image: url('{image:background}');
- {block:ifbackgroundcover}
- background-size: cover;
- {/block:ifbackgroundcover}
- {block:ifnotbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotbackgroundcover}
- background-attachment:fixed;
- font-family:{text:font};
- font-size:{text:font size}px;
- color:{color:text};
- }
- p{
- margin:5px 0px;
- padding:0;
- }
- pre {
- white-space: pre-wrap;
- white-space: -moz-pre-wrap;
- white-space: -pre-wrap;
- white-space: -o-pre-wrap;
- word-wrap: break-word;
- }
- a{
- color:{color:links};
- text-decoration:none;
- transition:0.5s;
- text-shadow: 0px 0px 10px {color:links shadow};
- }
- a:hover{
- color:{color:links hover};
- {block:ifhoverblur}
- -webkit-filter: blur(.9px);
- {/block:ifhoverblur}
- transition:0.5s;
- text-shadow: 0px 0px 10px {color:links shadow};
- }
- a.tumblr_blog{
- display:inline-block;
- margin-bottom:5px;
- }
- li{
- margin-left:-15px;
- }
- #wrapper{
- width:1200px;
- margin:10px auto;
- animation: fadeEffect 0.5s;
- display:flex;
- flex-direction:row-reverse;
- }
- @keyframes fadeEffect {
- from {opacity: 0;}
- to {opacity: 1;}
- }
- #content{
- margin:auto;
- }
- #sidebar{
- position:fixed;
- display: flex;
- flex-direction:row;
- height:fit-content;
- height:-moz-fit-content;
- top: 0;
- bottom: 0;
- margin: auto;
- gap:10px;
- }
- #icon{
- width:250px;
- height:500px;
- margin-right:-10px;
- }
- #icon img{
- width:250px;
- height:500px;
- object-fit:cover;
- display:block;
- border:{text:border width}px {select:border style} {color:border};
- box-sizing:border-box;
- box-shadow: 0px 0px 5px 2px {color:box shadow};
- }
- #links{
- display:flex;
- flex-direction:column;
- gap:10px;
- margin-left:10px;
- justify-content:flex-end;
- }
- #links a{
- border:{text:border width}px {select:border style} {color:border};
- max-width:fit-content;
- max-width:-moz-fit-content;
- padding:5px;
- background-color:{color:links background};
- box-shadow: 0px 0px 5px 2px {color:box shadow};
- }
- #desc{
- position:absolute;
- background-color:{color:desc background};
- border:{text:border width}px {select:border style} {color:border};
- margin:10px;
- width:230px;
- box-sizing:border-box;
- padding:5px;
- bottom:0px;
- text-align:center;
- box-shadow: 0px 0px 5px 2px {color:box shadow};
- }
- .post{
- width:500px;
- margin:10px auto;
- overflow:hidden;
- border:{text:border width}px {select:border style} {color:border};
- background:{color:post background};
- box-sizing:border-box;
- word-break:break-word;
- box-shadow: 0px 0px 5px 2px {color:box shadow};
- }
- .footer{
- text-align:center;
- margin:auto;
- margin-top:10px;
- border:{text:border width}px {select:border style} {color:border};
- padding:10px;
- background-color:{color:footer background};
- }
- .answer .embed_iframe{
- width: 340px;
- }
- .nfp_row{
- margin-left:0px;
- margin-right:0px;
- }
- #nav{
- width: 500px;
- margin: 30px auto;
- text-align: center;
- display: flex;
- justify-content: space-evenly;
- border:{text:border width}px {select:border style} {color:border};
- box-sizing:border-box;
- padding:10px;
- background-color:{color:nav background};
- box-shadow: 0px 0px 5px 2px {color:box shadow};
- }
- video{
- max-width:100%;
- height:auto!important;
- border:{text:border width}px {select:border style} {color:border};
- }
- .video-container iframe,
- .video-container object,
- .video-container embed {
- position: center;
- max-width: 472px;
- max-height: 460px;
- border:{text:border width}px {select:border style} {color:border};
- box-sizing:border-box;
- }
- .video-wrapper {
- max-width: 460px;
- max-height: 460px;
- box-sizing:border-box;
- }
- iframe.tumblr_audio_player {
- height: 85px;
- border:{text:border width}px {select:border style} {color:border};
- box-sizing:border-box;
- display:block;
- }
- .media{
- margin:0 0 0px 0;
- text-align:center;
- }
- .media:hover{
- {block:ifhoverblur}
- -webkit-filter: blur(.9px);
- {/block:ifhoverblur}
- }
- .media img{
- border:{text:border width}px {select:border style} {color:border};
- display:block;
- box-sizing:border-box;
- }
- .title{
- font-size:calc({text:font size}px * 2 - 10px);
- font-weight:bold;
- margin:10px 0 10px 0;
- color:{color:text};
- }
- h1, h2, h3, h4, h5, h6{
- font-size:calc({text:font size}px * 2 - 10px);
- font-weight:bold;
- margin:10px 0 10px 0;
- color:{color:text};
- }
- .quote{
- font-weight:normal;
- font-size:{text:font size};
- font-style:italic;
- margin:0 0 10px 0;
- }
- .question {
- position: relative;
- border:{text:border width}px {select:border style} {color:border};
- background-color:{color:description background};
- padding: 10px;
- margin-left:10px;
- width:100%;
- word-break: break-all;
- }
- .asker{
- display:flex;
- align-items: flex-start;
- }
- .asker img{
- border:{text:border width}px {select:border style} {color:border};
- }
- .answer{
- position: relative;
- border:{text:border width}px {select:border style} {color:border};
- background-color:{color:description background};
- padding: 10px;
- margin-right:10px;
- width:100%;
- word-break: break-all;
- }
- .answerer{
- margin-top:10px;
- display:flex;
- align-items: flex-start;
- }
- .answerer img{
- border:{text:border width}px {select:border style} {color:border};
- }
- .caption{
- margin-top:10px;
- }
- blockquote{
- margin:10px;
- padding-left:10px;
- border-left:{text:border width}px {select:border style} {color:border};
- }
- blockquote img{
- max-width:100%;
- height:auto;
- object-fit:cover;
- display: block;
- border:{text:border width}px {select:border style} {color:border};
- box-sizing:border-box;
- }
- img{
- max-width:100%;
- height:auto;
- }
- ol.notes{
- border:{text:border width}px {select:border style} {color:border};
- background-color:{color:post background};
- margin-top:10px;
- padding:10px;
- list-style-type:none;
- max-height:200px;
- overflow:auto;
- margin-bottom:0px;
- }
- ol.notes li.note img{
- width:16px;
- height:16px;
- margin-right:3px;
- }
- ol.notes li.note{
- margin:0px;
- }
- .tags {
- }
- [photoset-layout] {
- grid-gap: 10px;
- }
- [photoset-layout] img {
- border:{text:border width}px {select:border style} {color:border};
- display: block;
- height: 100%;
- width: 100%;
- object-fit: cover;
- background-color:{color:description background};
- }
- [photoset-layout] div {
- }
- .answer .embed_iframe{
- width: 240px;
- }
- #floatie img{
- position:fixed;
- bottom:10px;
- left:10px;
- max-width:300px;
- height:auto;
- }
- </style>
- <body>
- {block:ifredirect}
- {block:IndexPage}
- <script type="text/javascript">
- var url = location.href;
- if (url == "{BlogURL}") {
- window.location = "{BlogURL}tagged/{text:redirect}";
- }
- </script>
- {/block:IndexPage}
- {/block:ifredirect}
- <div id="floatie"><img src="{image:floatie}"></div>
- <div id="wrapper">
- <div id="sidebar">
- <div id="icon">
- <div id="desc">{text:description}</div>
- <a href="/"><img src="{image:sidebar img}"></a>
- </div>
- <div id="links">
- <a href="{text:link 1 url}">{text:link 1}</a>
- <a href="{text:link 2 url}">{text:link 2}</a>
- <a href="{text:link 3 url}">{text:link 3}</a>
- </div>
- </div>
- <div id="content">
- {block:Posts}
- <div class="post" post-type="{PostType}">
- <div style="padding:10px">
- {block:Text}
- {block:Title}
- <div class="title">{Title}</div>
- {/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Photo}
- {block:Photoset}
- <div class="photoset-grid" photoset-layout="{PhotosetLayout}">{block:Photos}<div data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}" data-lowres="{PhotoURL-500}" data-highres="{PhotoURL-HighRes}" onclick="lightbox(this)"><img src="{PhotoURL-HighRes}" /></div>{/block:Photos}</div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Photoset}
- {block:Quote}
- <div class="quote">"{Quote}"</div>
- {block:Source}
- <div class="quotesource">{Source}</div>
- {/block:Source}
- {/block:Quote}
- {block:Link}
- <div class="title"><a href="{URL}">{Name}</a></div>
- {block:Description}
- <div class="description">{Description}</div>
- {/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}
- <div class="title">{Title}</div>
- {/block:Title}
- {block:Lines}
- <div class="{Alt} user_{UserNumber}">
- {block:Label}
- <b>{Label}</b>{/block:Label}
- {Line}
- </div>
- {/block:Lines}
- {/block:Chat}
- {block:Video}
- <div class="media"><div class="video-wrapper">
- <div class="video-container">{video-400}</div>
- </div></div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Video}
- {block:Audio}
- <div class="media">
- {block:AudioEmbed}<div class="video-wrapper"><div class="video-container">{AudioEmbed-500}</div></div>{/block:AudioEmbed}
- </div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Audio}
- {block:Answer}
- <div class="asker"><img src="{AskerPortraitURL-48}"> <div class="question" style="font-style:italic">{Question}</div></div>
- <div class="answerer"><div class="answer">{Answer}</div>{block:Answerer}<img src="{AnswererPortraitURL-48}">{/block:Answerer}<img src="{PortraitURL-48}" style="{block:Answerer}display:none{/block:Answerer}"></div>
- <div style="margin-top:20px;{block:NotReblog}display:none;{/block:NotReblog}">{Replies}</div>
- {/block:Answer}
- {block:Date}
- <div class="footer">
- <a href="{Permalink}" title="{notecount} notes">{TimeAgo}</a>
- <!-- {block:NoRebloggedFrom}
- {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
- {/block:NoRebloggedFrom} -->{block:ContentSource}<!-- {SourceURL}
- {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- {block:HasTags}
- {block:IndexPage}<div class="tags"><div style="margin-top:10px">{block:Tags}<a href="{TagURL}"><i class="fas fa-hashtag"></i>{Tag} </a>{/block:Tags}</div></div>{/block:IndexPage}
- {block:PermalinkPage}<div style="margin-top:10px;text-align:center;">{block:Tags}<a href="{TagURL}"><i class="fas fa-hashtag"></i>{Tag} </a>{/block:Tags}</div>{/block:PermalinkPage}
- {/block:HasTags}
- </div>
- {block:PermalinkPage}
- {block:NoteCount}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:NoteCount}
- {/block:PermalinkPage}
- {/block:Date}
- </div>
- </div>
- {/block:Posts}
- {block:Pagination}
- <div id="nav">
- {block:PreviousPage}
- <a href="{PreviousPage}" class="arrows">이전</a>
- {/block:PreviousPage}
- {block:JumpPagination length="5"}
- {block:CurrentPage}
- <span class="current_page">{PageNumber}</span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a class="jump_page nohover" href="{URL}">{PageNumber}</a>
- {/block:JumpPage}
- {/block:JumpPagination}
- {block:NextPage}
- <a href="{NextPage}" class="arrows">다음</a>
- {/block:NextPage}
- </div>
- {/block:Pagination}
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement