I’m trying to create a single-page site and really like the look of the Detox theme. What I’d like to do is have the root page at http://mydomain.com
be this single page, but I can’t figure out how to do this from the docs. Here’s what my current directory structure looks like:
├── archetypes
├── config.toml
├── content
│ └── about.md
├── data
├── layouts
├── public
│ ├── index.xml
│ └── sitemap.xml
├── static
└── themes
└── detox
├── LICENSE.md
├── README.md
├── archetypes
│ └── default.md
├── images
│ ├── screenshot.png
│ └── tn.png
├── layouts
│ ├── _default
│ │ ├── li.html
│ │ ├── list.html
│ │ ├── post.html
│ │ └── single.html
│ └── partials
│ ├── disqus.html
│ ├── footer.html
│ ├── google_analytics.html
│ ├── head.html
│ ├── header.html
│ ├── meta.html
│ └── pagination.html
├── static
│ ├── css
│ │ └── main.css
│ └── js
│ └── fittext.js
└── theme.toml
And here’s my config.toml
:
baseurl = "http://mydomain.com"
languageCode = "en-us"
title = "My Domain"
Ideally, I’d like for users that enter mydomain.com
in their browsers to see only the content in about.md
. I’ve tried moving this into a top-level content/_index.md
but then it doesn’t get rendered at all. Any help would be very much appreciated!