mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-23 17:42:15 -05:00
19 lines
455 B
HTML
19 lines
455 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<link rel='stylesheet' href='./css/reset.css' type='text/css' media='all' />
|
||
|
<link rel='stylesheet' href='./css/typography.css' type='text/css' media='all' />
|
||
|
|
||
|
<title>{$title}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<article>
|
||
|
<h1><a href="{$url}">{$title}</a></h1>
|
||
|
<div id="readityourselfcontent">
|
||
|
{$content}
|
||
|
</div>
|
||
|
<span class="comeFrom">Come From : <a href="{$url}">{$url}</a>
|
||
|
</article>
|
||
|
{include="footer"}
|
||
|
</body>
|
||
|
</html>
|