diff --git a/data/man1.template b/data/man1.template
new file mode 100644
--- /dev/null
+++ b/data/man1.template
@@ -0,0 +1,15 @@
+.\" vim: ft=nroff
+.Dd $Mdocdate$
+.Dt {{docTitle}} {{docSection}}
+.Os
+.Sh NAME
+{{name}}
+.Sh SYNOPSIS
+{{synopsis}}
+.Sh DESCRIPTION
+{{description}}
+{{environment}}
+{{files}}
+.Sh EXIT STATUS
+{{exitStatus}}
+{{seeAlso}}
diff --git a/data/man5.template b/data/man5.template
new file mode 100644
--- /dev/null
+++ b/data/man5.template
@@ -0,0 +1,11 @@
+.\" vim: ft=nroff
+.Dd $Mdocdate$
+.Dt {{docTitle}} {{docSection}}
+.Os
+.Sh NAME
+{{name}}
+.Sh SYNOPSIS
+{{synopsis}}
+.Sh DESCRIPTION
+{{description}}
+{{seeAlso}}
diff --git a/mdoc.cabal b/mdoc.cabal
--- a/mdoc.cabal
+++ b/mdoc.cabal
@@ -1,11 +1,15 @@
-cabal-version:   1.18
-name:            mdoc
-version:         0.1.0.0
-license:         AGPL-3
-maintainer:      Pat Brisbin
-synopsis:        Parser and pretty-printer for the mdoc(7) language
-description:     Please see README.md
-build-type:      Simple
+cabal-version:      1.18
+name:               mdoc
+version:            0.1.0.1
+license:            AGPL-3
+maintainer:         Pat Brisbin
+synopsis:           Parser and pretty-printer for the mdoc(7) language
+description:        Please see README.md
+build-type:         Simple
+extra-source-files:
+    data/man1.template
+    data/man5.template
+
 extra-doc-files:
     README.md
     CHANGELOG.md
