Git Product home page Git Product logo

Comments (4)

juhair-cupcake avatar juhair-cupcake commented on July 30, 2024 1

If you want your whatever.md as a blog post, then your file structure will be content>blog>whatever.md... then you can see the page on localhost:1313/blog/whatever/. OR If you want it as portfolio post then it will be in content>protfolio>whatever.md... if you want example.
.... OR if you want a new page like localhost:1313/whatever/ then create a new folder inside layout name it whatever, in that folder create a file named list.html where you have to define that page as main {{ define "main" }} <>...your HTML code...</> {{ end }}...Bla Bla Bla... PLZ read the documentation for more info.

from portio-hugo.

niklas-fischer avatar niklas-fischer commented on July 30, 2024

Thanks for your answer! If I understand you correctly, there's so far no template for a page like privacy, imprint or comparable, if I don`t make a blog post out of it or create a specific HTML file as you described?

from portio-hugo.

juhair-cupcake avatar juhair-cupcake commented on July 30, 2024

This theme doesn't have any privacy, imprint or comparable page. If you want those pages you need to create them as a new page from scratch. Because "privacy and policy" is not a blog post, it's a unique page... Directory Structure Doc.

from portio-hugo.

stephenajulu avatar stephenajulu commented on July 30, 2024

Hi, here are 2 workable solutions

The long way:

  1. Create layout/privacy-policy/list.html(By copying the blog list template or creating your own) then content/privacy-policy/_index.md
    This means each new page will require their own list template and _index.md eg (layout/imprint/list.html → content/imprint/_index.md), (layout/pivacy-policy/list.html → content/privacy-policy/_index.md) and so on

The short simple way:

  1. Copy the blog's list.html template
  2. Create a new directory with the name "page" in layout(layout/page
  3. Paste the blog's list template copy in the new directory(layout/page/list.html).
  4. Edit it to suit your needs eg changing the breadcrumb structure
  5. Create a new directory under content with the name "page" (content/page)
  6. Then set the permalink structure on config.toml as
    [permalinks]
    page = '/:title'
    In order to route from https://examplesite.com/page/privacy policy → https://examplesite.com/privacypolicy
  7. You can then create pages in /content/page and they should be rendered as portio.com/privacy-policy eg content/page/privacy-policy.md → https://examplesite.com/privacy-policy.md

if either of these work, kindly close this issue.

from portio-hugo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.