Advertisement
cvndythemes

Redirect Page #01

Mar 29th, 2016
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{Title}</title>
  5. {block:Description}
  6. <meta name="description" content="{MetaDescription}">
  7. {/block:Description}
  8. <link rel="shortcut icon" href="{Favicon}">
  9.  
  10. <!--
  11.  
  12. cvndythemes.tumblr.com
  13.  
  14. -->
  15.  
  16. <!-- DEFAULTS -->
  17.  
  18. <meta name="image:Background" content="http://placehold.it/1440X1100"/>
  19.  
  20. <meta name="text:New URL" content="http://" />
  21. <meta name="text:New Title" content="New Blog Title" />
  22. <meta name="text:Delay" content="10000" />
  23.  
  24. <link href='https://fonts.googleapis.com/css?family=Roboto:400,900|Khula:400,800|Biryani:400,800' rel='stylesheet' type='text/css'>
  25.  
  26. <style>
  27. iframe {display:none !important;}
  28.  
  29. iframe.tmblr-iframe {
  30. top:0px!important;
  31. right:0!important;
  32. opacity:0!important;
  33. display:none;
  34. }
  35.  
  36. body {
  37. background:#000000;
  38. }
  39.  
  40. a {
  41. font-family: 'Biryani', sans-serif;
  42. font-weight:900;
  43. color:#ffffff;
  44. font-size:50px;
  45. letter-spacing:0px;
  46. text-decoration:none;
  47. transition:all 1s;
  48. }
  49.  
  50. a:hover {
  51. color:#ffffff;
  52. letter-spacing:1px;
  53.  
  54. }
  55.  
  56. box {
  57. font-family: 'Biryani', sans-serif;
  58. font-weight:900;
  59. color:#ffffff;
  60. font-size:18px;
  61. letter-spacing:1px;
  62. }
  63.  
  64. #container {
  65. width:1200px;
  66. height:500px;
  67. position:fixed;
  68. left:50%;
  69. margin-left:-600px;
  70. top:50%;
  71. margin-top:-250px;
  72. }
  73.  
  74. #content {
  75. position:fixed;
  76. width:1200px;
  77. margin-top:180px;
  78. text-align:center;
  79. text-transform:uppercase;
  80. }
  81.  
  82. p {
  83. margin-top:-15px;
  84. margin-bottom:-25px;
  85. }
  86.  
  87. .background {
  88. background: url('{image:Background}') no-repeat center center fixed;
  89. -webkit-background-size: cover;
  90. -moz-background-size: cover;
  91. -o-background-size: cover;
  92. background-size: cover;
  93. }
  94.  
  95.  
  96. </style>
  97.  
  98. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  99.  
  100.  
  101. </head>
  102. <body>
  103. <body class="background">
  104.  
  105. <div id="container">
  106. <div id="content">
  107.  
  108. <box>{Name}
  109. has moved to
  110. <p>
  111. <a href="{text:New URL}">{text:New Title}</a>
  112. </p>
  113. redirecting you...
  114. </box>
  115. </div></div>
  116. </body>
  117.  
  118.  
  119. </html>
  120.  
  121. <script>
  122. setTimeout( redirectTumblr, {text:Delay} );
  123. function redirectTumblr() {
  124. location.replace('{text:New URL}' + location.pathname);
  125. }
  126. </script>
  127.  
  128. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement