diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..30c7a45 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html> + +<head> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta charset="utf-8" /> + + <link rel="icon" type="image/gif" href="/faces/triblur/triblur_94.gif" /> + + <title>{title}</title> + + <link rel="stylesheet" href="/styles/common.css" /> + {%pattern styles} + <link rel="stylesheet" href="{style}" /> + {%end} +</head> + +<body> + <ul id="nav-access"> + <li><a href="#main-content">Skip to main content</a></li> + </ul> + {%wrapped-content} +</body> + +</html> \ No newline at end of file |