├── .gitignore ├── Assets ├── Assets.txt └── images │ └── Images.txt ├── Content └── Content.txt ├── Includes └── Includes.txt ├── LICENSE ├── Package.swift ├── README.md └── Sources ├── Layouts └── MainLayout.swift ├── Pages └── Home.swift └── Site.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Assets.txt: -------------------------------------------------------------------------------- 1 | Place any assets you want copied into the build here. -------------------------------------------------------------------------------- /Assets/images/Images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/Assets/images/Images.txt -------------------------------------------------------------------------------- /Content/Content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/Content/Content.txt -------------------------------------------------------------------------------- /Includes/Includes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/Includes/Includes.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Layouts/MainLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/Sources/Layouts/MainLayout.swift -------------------------------------------------------------------------------- /Sources/Pages/Home.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/Sources/Pages/Home.swift -------------------------------------------------------------------------------- /Sources/Site.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/IgniteStarter/HEAD/Sources/Site.swift --------------------------------------------------------------------------------