Last active
May 23, 2020 16:02
-
-
Save Dinir/64140db6c6433453c2cb71565a3b5cf8 to your computer and use it in GitHub Desktop.
Default HTML template written using Velocity Template Language
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
#set( $MyName = "Dinir Nertan" ) | |
#set( $MyTwitterHandle = "@DinirNertan" ) | |
#set( $ThemeColor = "#65849f" ) | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>#[[$1Title$]]#</title> | |
<!--<link rel="icon" type="image/x-icon" href="./favicon.ico">--> | |
<meta name="theme-color" content="${ThemeColor}"> | |
<meta property="og:title" content="#[[$1Title$]]#"> | |
## Name of the site hosting this webpage. ** | |
<!--<meta property="og:site_name" content=""> | |
<meta name="twitter:site" content="@">--> | |
<meta name="author" content="${MyName}"> | |
<meta name="twitter:creator" content="${MyTwitterHandle}"> | |
<meta name="description" content="#[[$2Description$]]#"> | |
<meta property="og:description" content="#[[$2Description$]]#"> | |
## Absolute URL this page should be represented as. ** | |
<!--<link rel="canonical" href=""> | |
<meta property="og:url" content="">--> | |
## Representative image for this webpage. ** | |
<!--<meta property="og:image" content=""> | |
<meta property="og:image:type" content="image/png"> | |
<meta property="og:image:width" content="1280"> | |
<meta property="og:image:height" content="640"> | |
<meta property="og:image:alt" content="">--> | |
## Type of the content of the webpage. See `https://ogp.me/#types`. ** | |
<meta property="og:type" content="website"> | |
#** | |
What type of the card should it appear as when linked in a tweet? | |
“summary”, “summary_large_image”, “app”, or “player”. | |
*# | |
<!--<meta name="twitter:card" content="summary_large_image">--> | |
<meta name="viewport" content="width=device-width"> | |
<!--<link rel="stylesheet" href="./your.css">--> | |
<!--<script src="./your.js"></script>--> | |
</head> | |
<body> | |
#[[$END$]]# | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment