1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-06-07 12:56:15 +01:00

Rename "templates" subfolder to "src".

This commit is contained in:
devlinjd
2015-12-06 18:00:04 -05:00
parent f586096fa4
commit c81089a810
28 changed files with 456 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
{{! A simple-as-possible HTML-to-PDF template for the "Hello World" theme. }}
<html style="height: 100%;">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ r.name }}</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Hello, world! My name is {{ r.name }}</h1>
</body>
</html>