diff --git a/Files.hs b/Files.hs
new file mode 100644
--- /dev/null
+++ b/Files.hs
@@ -0,0 +1,20 @@
+module Files where
+
+
+exampleTeXPost :: String
+exampleTeXPost = unlines
+                 [ "\\documentclass{article}"
+                 , "\\author{Rushi Shah}"
+                 , "\\date{January 2015}"
+                 , "\\title{Example Post}"
+                 , "\\begin{document}"
+                 , "\\maketitle"
+                 , "This is an example LaTeX/PDF post."
+                 , "\\end{document}"
+                 ]
+
+exampleBltxFile :: String
+exampleBltxFile = unlines
+                  [ "<ul id='blog-posts'>"
+                  , "</ul>"
+                  ]
diff --git a/blatex.cabal b/blatex.cabal
--- a/blatex.cabal
+++ b/blatex.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                blatex
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            Blog in LaTeX
 description:         Static site generator that lets you write your blog in LaTeX and publish it to github pages.
 description:         Markdown and HTML are the standard tools used to write your every day tech blog with. But they have pretty weak support for embedding mathematical formulas, and are not conducive to writing for an extended period of time. Plus, they aren't even Turing complete! So use BlaTeX to start blogging in LaTeX!
@@ -33,7 +33,8 @@
                      , text >=1.1 && <1.2
   -- hs-source-dirs:      
   default-language:    Haskell2010
-
+  other-modules:       Files
+  
 source-repository head
   type:     git
   location: https://github.com/2016rshah/BlaTeX.git
