Created
November 4, 2018 22:23
-
-
Save ruslanosipov/d86a18831f02a1e7bb334debf894b685 to your computer and use it in GitHub Desktop.
wiki/templates/default.html
This file contains 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> | |
<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