chore: cleaned up some stuff for the site

This commit is contained in:
Nick 2025-12-05 17:57:08 -06:00
parent 38f7ba4d91
commit 3a9339aead
5 changed files with 12 additions and 34 deletions

View file

@ -146,7 +146,7 @@ elmBuildsList device =
cardMaker device
(C.BlogArticle service)
(contentList service
[ elmCodeRenderer device ]
[]
MarkdownMsg
)
)
@ -169,11 +169,11 @@ The site that you're currently viewing this on was written by me in the Elm prog
Below is an example of a helper function that I wrote for this site. This particular function extracts the first 80 words from all of my articles' markdown strings, and displays them as blurbs, followed by an ellipsis, in my article cards using my markdown parser.
The source code for this website is viewable on [Gitlab](https://gitlab.com/upRootNutrition/website).
The source code for this website is viewable on upRootNutrition's [Forgejo](https://source.uprootnutrition.com/upRootNutrition/dotfiles/src/branch/main/packages/website).
# WHAT YOU GET
1. An Elm-based website written to your specifications.
1. An static Elm-based website written to your specifications.
2. Two revisions to better meet your needs and vision.
@ -186,9 +186,6 @@ The source code for this website is viewable on [Gitlab](https://gitlab.com/upRo
A clear description of your site's pages and structure.
Any bespoke frontend functionality you want included.
# EXAMPLE
"""
, articleReferences =
[ { author = ""

View file

@ -125,17 +125,17 @@ view : Shared.Model -> Model -> View Msg
view shared model =
{ title = "services (nixConfigs)"
, attributes = []
, element = elmBuildsContainer shared.device
, element = nixBuildsContainer shared.device
}
elmBuildsContainer : Device -> Element Msg
elmBuildsContainer device =
topLevelContainer (elmBuildsList device)
nixBuildsContainer : Device -> Element Msg
nixBuildsContainer device =
topLevelContainer (nixBuildsList device)
elmBuildsList : Device -> Element Msg
elmBuildsList device =
nixBuildsList : Device -> Element Msg
nixBuildsList device =
column
(case ( device.class, device.orientation ) of
_ ->
@ -148,7 +148,7 @@ elmBuildsList device =
cardMaker device
(C.BlogArticle service)
(contentList service
[ nixCodeRenderer device ]
[]
MarkdownMsg
)
)
@ -172,13 +172,13 @@ If you're interested in having a custom Nix configuration, or having a pre-exist
Below is an example of a nix flake that I wrote for the devshell that I used to manage and isolate the development environment for this site. All of the packages, pre-defined settings, and tooling used for this site are managed through this flake.
The source code for my Nix server is viewable on [Gitlab](https://gitlab.com/upRootNutrition/dotfiles).
The source code for my Nix server is viewable on upRootNutrition's [Forgejo](https://source.uprootnutrition.com/upRootNutrition/dotfiles).
# WHAT YOU GET
1. A NixOS configuration written to your specifications.
2. Two refactors for the purposes of improving readability.
2. Two refactors for the purposes of improving ergonomics.
3. Instructions for how to use and build upon your configuration.
@ -189,9 +189,6 @@ The source code for my Nix server is viewable on [Gitlab](https://gitlab.com/upR
A list of configuration architecture specifications.
Any bespoke configuration you want included.
# EXAMPLE
"""
, articleReferences =
[ { author = ""