mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
33 lines
965 B
Elm
Executable file
33 lines
965 B
Elm
Executable file
module Config.Pages.Blogs.MainBlog.FeldwitzFuckery exposing (..)
|
|
|
|
import Config.Pages.Blogs.Types exposing (BlogArticle)
|
|
import Route.Path as Path
|
|
|
|
|
|
articleFeldwitzFuckery : BlogArticle
|
|
articleFeldwitzFuckery =
|
|
{ articleName = ""
|
|
, articleLink = Path.toString Path.Blog_Feldwitzfuckery
|
|
, articleAuthor = "Nick Hiebert"
|
|
, isNewTabLink = False
|
|
, hasReferences = True
|
|
, hasTableOfContents = True
|
|
, articleImage = ""
|
|
, articlePublished = ""
|
|
, articleBody = """
|
|
|
|
|
|
|
|
![][image1]
|
|
[image1]: /blog/feldwitzfuckery/image1.png
|
|
|
|
Thank you for reading! If you like what you've read and want help me create more content like this, consider pledging your [Support](https://www.uprootnutrition.com/donate). Every little bit helps! I hope you found the content interesting!"""
|
|
, articleReferences =
|
|
[ { author = ""
|
|
, title = ""
|
|
, journal = ""
|
|
, year = ""
|
|
, link = ""
|
|
}
|
|
]
|
|
}
|