package App::Dapper::Init; =head1 NAME App::Dapper::Init - Default project files to use when a "dapper init" command is used. =head1 DESCRIPTION When using the dapper tool to initialize an empty directory with a new site, the files that are written to disk are contained in this file. For instance, the YAML project file, a layout template, and a starter post. =cut use utf8; use open ':std', ':encoding(UTF-8)'; use 5.8.0; use strict; use warnings FATAL => 'all'; use App::Dapper::Utils; my $source_index_name = "index.md"; my $source_index_content = <<'SOURCE_INDEX_CONTENT'; --- layout: index title: Welcome --- Hello world. SOURCE_INDEX_CONTENT my $templates_index_name = "index.html"; my $templates_index_content = <<'TEMPLATES_INDEX_CONTENT';