Coder Social home page Coder Social logo

Comments (5)

hongtaoh avatar hongtaoh commented on June 14, 2024 2

To remove the list from the homepage, in hugo-xmin/layouts/_default/list.html , try :

<ul>
  {{ $pages := .Pages }}
  {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
  {{ if not .IsHome}}  <!-- add this line -->
  {{ range (where $pages "Section" "!=" "") }}
  <li>
    <span class="date">{{ .Date.Format "2006/01/02" }}</span>
    <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
  {{ end }} <!-- add this line -->
</ul> 

from hugo-xmin.

yihui avatar yihui commented on June 14, 2024 1

Sorry, I don't have time to answer your specific questions, but this theme has been explained line-by-line in the blogdown book: https://bookdown.org/yihui/blogdown/templates.html

from hugo-xmin.

leerichardson avatar leerichardson commented on June 14, 2024 1

Here's small hack to get rid of it completely (option 3 in @zayuim original list)

  • create a file layouts/_default/list.html that comments out the loop, if you're on the home page:
{{ partial "header.html" . }}

{{if not .IsHome }}
<h1>{{ .Title | markdownify }}</h1>
{{ end }}

{{ .Content }}

{{if not .IsHome }}
<ul>
  {{ range (where .Data.Pages "Section" "!=" "") }}
  <li>
    <span class="date">{{ .Date.Format "2006/01/02" }}</span>
    <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>
{{ end }}

{{ partial "footer.html" . }}

One thing I don't understand: How does Hugo decide which template to use, for each page? For example, how did Hugo decide that the first page would use the list.html template?

from hugo-xmin.

leerichardson avatar leerichardson commented on June 14, 2024

I am also looking to figure this out!

from hugo-xmin.

zayuim avatar zayuim commented on June 14, 2024

@hongtaoh Thanks, I'll close the thread now.

from hugo-xmin.

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.