not really known
Go to file
2021-08-25 10:02:24 -07:00
.github/workflows Use elmi-to-json --version to make sure it is installed before running elm-test. 2021-08-25 10:02:24 -07:00
cypress Comment out test case for now - need to figure out how to get multiple dev servers running for cypress GH actions run. 2021-07-29 12:32:09 -07:00
docs Update 2.0-beta.md 2021-06-14 16:19:41 -07:00
examples Use elmi-to-json --version to make sure it is installed before running elm-test. 2021-08-25 10:02:24 -07:00
generator Use jsesc instead of JSON.stringify to avoid issues 2021-08-20 17:55:51 +01:00
plugins Add default timestamps for case of uncommited file. 2021-08-13 08:29:05 -07:00
review Ignore temporarily unused module in review config. 2021-07-29 14:22:09 -07:00
src Skip unnecessary 404 check in build to avoid extra computations. 2021-08-09 19:43:06 -07:00
tests Pass in flag in test. 2021-08-09 19:52:56 -07:00
.all-contributorsrc docs: update .all-contributorsrc [skip ci] 2020-07-19 18:23:51 +00:00
.gitignore Add cypress setup for dev server. 2021-06-04 18:06:39 -07:00
.prettierrc Add prettier config. 2021-07-10 07:53:14 -07:00
CHANGELOG-ELM.md Update changelog. 2021-08-03 13:39:00 -07:00
CHANGELOG-NPM.md Update changelog. 2021-08-17 18:45:07 -07:00
CONTRIBUTING.md Add webpack performance profiling instructions 2020-08-18 14:41:26 -07:00
cypress.json Add cypress config base url. 2021-07-21 13:29:54 -07:00
docs.json Update docs. 2021-07-30 15:49:39 -07:00
elm-tooling.json Update elm-format. 2021-04-14 15:56:10 -07:00
elm.json Bump elm package. 2021-08-03 13:40:09 -07:00
jsconfig.json Set up proof of concept for webpack-free build. 2020-10-10 18:07:36 -07:00
LICENSE Add LICENSE file. 2019-09-20 13:58:20 -07:00
netlify.toml Remove duplicate netlify.toml key. 2021-06-03 16:15:19 -07:00
package-lock.json Install elmi-to-json as dev dependency to try to fix error in GitHub Actions. 2021-08-25 09:51:29 -07:00
package.json Use elmi-to-json --version to make sure it is installed before running elm-test. 2021-08-25 10:02:24 -07:00
README.md Update readme. 2021-07-30 14:47:24 -07:00

elm-pages Netlify Status Build Status npm Elm package

All Contributors

Deploy to Netlify

A statically typed site generator, written with pure Elm.

Getting Started Resources

Key features

SEO made easy

With elm-pages, SEO is as easy as calling a type-safe, high-level Elm API and passing in data from your content's metadata.

The metadata is just Elm data that you define however you want, using a Json Decoder to grab data out of your markdown frontmatter.

import MyMetadata exposing (MyMetadata)

head : BlogMetadata -> List (Head.Tag Pages.PathKey)
head meta =
  Seo.summaryLarge
    { canonicalUrlOverride = Nothing
    , siteName = "elm-pages"
    , image =
      { url = PagesNew.images.icon
      , alt = meta.description
      , dimensions = Nothing
      , mimeType = Nothing
      }
    , description = meta.description
    , locale = Nothing
    , title = meta.title
    }
    |> Seo.article
      { tags = []
      , section = Nothing
      , publishedTime = Just (Date.toIsoString meta.published)
      , modifiedTime = Nothing
      , expirationTime = Nothing
      }

Optimized for performance

elm-pages has a set of features built-in to make sure your page is blazing fast on any device.

  • Automatic page pre-rendering
  • Page content is split up per-page so page content downloads and parses just-in-time
  • Page pre-fetching on link hover

Try out elm-pages, open up Lighthouse, and see for yourself! Or check out https://elm-pages.com (find the source code in the examples/docs/ folder).

What's next?

Take a look at the current projects to see the current priorities!

https://github.com/dillonkearns/elm-pages/projects

Contributors

Thanks goes to these wonderful people (emoji key):


Daniel Marín

💻

Steven Vandevelde

💻

Johannes Maas

📓 💻

Wiktor Toporek

💻

Luke Westby

💻

This project follows the all-contributors specification. Contributions of any kind welcome!