Last active
May 26, 2016 15:27
-
-
Save scripting/d47de52e8ff2dec61081a5515188b014 to your computer and use it in GitHub Desktop.
Test version of the new default template for 1999.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>[%title%]</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="alternate" type="application/rss+xml" href="[%urlRssFeed%]" /> | |
<script src="http://1999.io/dev/publish/code.js"></script> | |
<link rel="stylesheet" href="http://1999.io/dev/publish/styles.css"/> | |
<!-- Hellllp! I'm trapped in an HTML page!!!! --> | |
<!-- Facebook metadata --> | |
<meta property="og:url" content="[%thisPageUrl%]" /> | |
<meta property="og:type" content="website" /> | |
<meta property="og:title" content="[%title%]" /> | |
<meta property="og:description" content="[%description%]" /> | |
<meta property="og:site_name" content="[%sitename%]" /> | |
<meta property="og:image" content="[%urlImage%]" /> | |
<!-- Twitter metadata --> | |
<meta name="twitter:card" content="summary_large_image"> | |
<meta name="twitter:site" content="@[%twitterScreenName%]"> | |
<meta name="twitter:title" content="[%title%]"> | |
<meta name="twitter:description" content="[%description%]"> | |
<meta name="twitter:image:src" content="[%urlImage%]"> | |
<style> | |
body { | |
font-family: "Ubuntu"; | |
font-size: 20px; | |
line-height: 145%; | |
} | |
.divMyPageBody { | |
margin-top: -30px; | |
width: 60%; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.divMyByline { | |
margin-left: 0px; | |
font-size: 17px; | |
} | |
.divMyBody { | |
font-family: "Georgia"; | |
margin-top: .8em; | |
} | |
.spWhen { | |
color: black; | |
font-size: inherit; | |
} | |
.spLikes { | |
color: black; | |
} | |
.divFooter { | |
} | |
</style> | |
<script> | |
var pagetable = [%pagetableInJson%]; | |
</script> | |
</head> | |
<body> | |
<div class="divMyPageBody"> | |
<div class="divPrevNextNavigation" id="idPrevNextNavigation"></div> | |
<div class="divMessageTitle" id="idMessageTitle" [%defaultTitleStyle%]>[%title%]</div> | |
<div class="divMyByline"> | |
By [%personNamePart%] | |
[%whenPart%] | |
[%popupPart%] | |
[%podcastPart%] | |
[%likesPart%] | |
</div> | |
<div class="divMyChatLog">[%chatLogPart%]</div> | |
<div class="divFooter"> | |
[%copyrightPart%] | |
<div class="divDate">Created: [%createdPart%]</div> | |
<div class="divDate">Updated: [%modifiedPart%]</div> | |
[%sloganPart%] | |
[%socialMediaLinksPart%] | |
</div> | |
</div> | |
<script> | |
$(document).ready (function () { | |
startup (); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment