From 9f3b590206e3dfe33b7129b1c8ff010f60318cf2 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sun, 27 Aug 2017 22:10:42 +0200 Subject: Move most of the code into new askama_shared crate This makes it possible to share code between askama and askama_derive. --- askama_shared/templates/sub/b.html | 1 + askama_shared/templates/sub/c.html | 1 + askama_shared/templates/sub/sub1/d.html | 1 + 3 files changed, 3 insertions(+) create mode 100644 askama_shared/templates/sub/b.html create mode 100644 askama_shared/templates/sub/c.html create mode 100644 askama_shared/templates/sub/sub1/d.html (limited to 'askama_shared/templates/sub') diff --git a/askama_shared/templates/sub/b.html b/askama_shared/templates/sub/b.html new file mode 100644 index 0000000..5716ca5 --- /dev/null +++ b/askama_shared/templates/sub/b.html @@ -0,0 +1 @@ +bar diff --git a/askama_shared/templates/sub/c.html b/askama_shared/templates/sub/c.html new file mode 100644 index 0000000..7601807 --- /dev/null +++ b/askama_shared/templates/sub/c.html @@ -0,0 +1 @@ +baz diff --git a/askama_shared/templates/sub/sub1/d.html b/askama_shared/templates/sub/sub1/d.html new file mode 100644 index 0000000..fa11a6a --- /dev/null +++ b/askama_shared/templates/sub/sub1/d.html @@ -0,0 +1 @@ +echo -- cgit