Add Package.swift and move files around

This commit is contained in:
Boris Bügling
2015-12-08 11:45:03 +01:00
parent 0bfd4134f9
commit 372b2e7576
35 changed files with 22 additions and 11 deletions

2
Tests/fixtures/base.html vendored Normal file
View File

@@ -0,0 +1,2 @@
{% block header %}Header{% endblock %}
{% block body %}Body{% endblock %}

2
Tests/fixtures/child.html vendored Normal file
View File

@@ -0,0 +1,2 @@
{% extends "base.html" %}
{% block body %}Child{% endblock %}

1
Tests/fixtures/test.html vendored Normal file
View File

@@ -0,0 +1 @@
Hello {{ target }}!