Skip to content

Instantly share code, notes, and snippets.

@ruslanosipov
Created November 4, 2018 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruslanosipov/d86a18831f02a1e7bb334debf894b685 to your computer and use it in GitHub Desktop.
Save ruslanosipov/d86a18831f02a1e7bb334debf894b685 to your computer and use it in GitHub Desktop.
wiki/templates/default.html
<html>
<head>
<link rel="Stylesheet" type="text/css" href="%root_path%style.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>%title%</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
.center {
margin-left: auto;
margin-right: auto;
max-width: 750px;
}
img {
border: solid 1px #ccc;
box-shadow: 1px 1px 5px #999;
max-height: 350px;
padding: 5px;
}
</style>
</head>
<body>
<div class="center">
<a href="%root_path%index.html">Index</a> |
<a href="%root_path%diary/diary.html">Diary</a>
</div>
<hr>
<div class="content center">
%content%
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment