Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: tests/test_site/templates/default.tmpl

Issue 29345468: Issue 4045 - Add Test Suite To CMS (Closed)
Patch Set: Adds flake8 run to tests dir Created Aug. 21, 2016, 2:36 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/test_site/templates/default.tmpl
===================================================================
new file mode 100644
--- /dev/null
+++ b/tests/test_site/templates/default.tmpl
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
Vasily Kuznetsov 2016/08/22 10:14:51 This template seems to be not used by any pages th
+<html lang="en">
+ <head>
+ <title>My Webpage</title>
+ </head>
+ <body>
+ <ul id="navigation">
+ {% for item in navigation %}
+ <li><a href="{{ item.href }}">{{ item.caption }}</a></li>
+ {% endfor %}
+ </ul>
+
+ <h1>My Webpage</h1>
+ {{ a_variable }}
+
+ {# a comment #}
+ </body>
+</html>
« no previous file with comments | « tests/test_site/settings.ini ('k') | tests/test_site/templates/empty.tmpl » ('j') | tox.ini » ('J')

Powered by Google App Engine
This is Rietveld