From 5c02b058824199596fc25e229c832a17baf107b3 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Fri, 5 Feb 2016 14:13:39 -0800 Subject: [PATCH] Move templates into src --- src/quotesite.nim | 2 +- {templates => src/templates}/layout.mustache | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {templates => src/templates}/layout.mustache (100%) diff --git a/src/quotesite.nim b/src/quotesite.nim index dc414af..ae9dfb2 100644 --- a/src/quotesite.nim +++ b/src/quotesite.nim @@ -1,7 +1,7 @@ import asyncdispatch, jester, moustachu, os, strutils const - baseTemplate = staticRead "../templates/layout.mustache" + baseTemplate = staticRead "./templates/layout.mustache" settings: port = 5000.Port diff --git a/templates/layout.mustache b/src/templates/layout.mustache similarity index 100% rename from templates/layout.mustache rename to src/templates/layout.mustache