<!DOCTYPE html>
<html>
<head>
<title><data:blog.pageTitle/></title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport'/>
<b:skin>
<![CDATA[
/* Global */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Header */
header {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 16px;
}
header h1 {
margin: 0;
font-size: 24px;
font-weight: 700;
}
/* Main */
main {
padding: 16px;
}
article {
margin-bottom: 32px;
border-bottom: 1px solid #ddd;
padding-bottom: 16px;
}
article:last-child {
margin-bottom: 0;
border-bottom: none;
padding-bottom: 0;
}
article h2 {
margin-bottom: 8px;
font-size: 20px;
font-weight: 700;
}
article p {
margin-bottom: 16px;
}
/* Footer */
footer {
background-color: #f5f5f5;
border-top: 1px solid #ddd;
padding: 16px;
text-align: center;
}
footer p {
margin: 0;
font-size: 14px;
color: #666;
}
/* Responsive */
@media (min-width: 768px) {
main {
max-width: 600px;
margin: 0 auto;
}
}
]]>
</b:skin>
</head>
<body>
<header>
<h1><data:blog.title/></h1>
</header>
<main>
<b:loop values='data:posts' var='post'>
<article>
<h2><a expr:href='data:post.url'><data:post.title/></a></h2>
<p><data:post.body/></p>
</article>
</b:loop>
</main>
<footer>
<p>© <data:blog.title/> <data:blog.year/></p>
</footer>
</body>
</html>
Yorum Gönder