-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] One page theme #109
Comments
It sounds possible. Not super easy, but possible. Docpress is simply two Metalsmith plugins:
What you need to do is reimplement docpress-Base yourself. Make it a On Mon, Jun 20, 2016, 6:28 PM Kiko Beats notifications@github.com wrote:
|
👍 let's do it |
Another inspirational website: https://github.com/lerna/website |
I think that the point is the relayout function: https://github.com/docpress/docpress-base/blob/master/index.js#L149 Basically in the function you are creating a html file based in the metadata and using the jade layout. The thing that I want to do is do the same but append into the index file. It is correct? |
I tried do something fast as proof concept. Basically reimplement relayout method to append all the html into the index file: https://gist.github.com/Kikobeats/a04f88212d462c2d19abe8544bfafa96 I need to reorganize the aside to works with the new markup. What do you think? |
expected output similar to: http://astrum.nodividestudio.com/pattern-library/ |
* Use sectionTitle for prev/next titles Goes with the changes over at docpress/docpress-core#107 so don't merge unless that PR is merged. * Rename section title to pageTitle See #109
I'm interested in create a docpress theme called
docpress-one
that presents all the documentation in one html file.Something very inspired on this: http://apex.run/
Do you think that could be more or less easy to do?
The text was updated successfully, but these errors were encountered: