Skip to content
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

bug - Error: Error building site: failed to render pages: render of "home" failed #206

Closed
b-reich opened this issue Jan 1, 2021 · 34 comments

Comments

@b-reich
Copy link

b-reich commented Jan 1, 2021

Expected Behavior

Website should render

Current Behavior

Website failed to render

Possible Solution

Steps to Reproduce

  1. hugo new site ./ -f=yaml --force
  2. git init
  3. git submodule add https://github.com/hugo-toha/toha.git themes/toha
  4. hugo server -t toha -w

Detailed Description

hugo server -t toha -w
Start building sites … 
Built in 27 ms
Error: Error building site: failed to render pages: render of "home" failed: execute of template failed: template: index.html:34:8: executing "index.html" at <partial "navigators/navbar.html" .>: error calling partial: "/tmp/testsite/themes/toha/layouts/partials/navigators/navbar.html:15:33": execute of template failed: template: partials/navigators/navbar.html:15:33: executing "partials/navigators/navbar.html" at <$mainLogo.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
@nathanhiemstra
Copy link

nathanhiemstra commented Jan 1, 2021

I'm getting this as well.

@mcusuperuser
Copy link

I have the same problem. This is quite a hurdle to get it running.

@darkwizard242
Copy link

darkwizard242 commented Jan 1, 2021

Think this may have to do with logos and/or author images.. instead of /static/images , can you try moving them to /assets/images?

Essentially moving site images to: <my-project>/assets/images/site/ ... However, the reference may remain the same as an example:

logo: # Currently moved to assets/images/site
    main: /images/site/main-logo-scroll.png
    inverted: /images/site/main-logo-constant.png
    favicon: /images/site/main-logo-favicon.png

Above was simply an example of the logos rendering.. However, that applies to the author/background images too, along with others parts of the site such as sections.

For posts, image of the post will need to be within the folder of a specific post named as hero.{svg,png,jpg}

@nathanhiemstra
Copy link

@darkwizard242 that worked, thank you!!

Is <my-project>/assets/images/site/ the proper place for global images? Or is there a path setting that's incorrect?

@darkwizard242
Copy link

@nathanhiemstra - Glad that worked out for you.

Ah apologies, if what I said led to confusion. /assets/images/site/ by itself, I don't believe is the global dir for images; but /assets/images/ is likely for all images except those for posts.

Examples:
/assets/images/site --> for site logos
/assets/images/author --> for author profile picture
/assets/images/sections/skills --> for skills images.
/assets/images/site/sections/achievements --> for achievement images.
.
.
.
etc.

References for those images in their specific yaml configuration files doesn't need to include assets in the path.

Nevertheless, @hossainemruz is the best person to confirm.

@hossainemruz
Copy link
Member

Yes. Now all images should go into /assets/images instead of /static/assets/images or /static/images. This is due to this PR: #173

Hugo image processing does not work for the images under /static folder.

@MAXIAO01
Copy link

MAXIAO01 commented Jan 2, 2021

Sorry but I am still confused about this problem. How can it be fixed now? I mean after the 4 steps to reproduce this problem, which part/file should I modify and how? Could somebody maybe give a direct clue? Thank you so much!!!!! (I am very new to this)

@nathanhiemstra
Copy link

To solve it I created a assets/images/site folders in the root directory and moved the images there.
image

@MAXIAO01
Copy link

MAXIAO01 commented Jan 2, 2021

To solve it I created a assets/images/site folders in the root directory and moved the images there.
image

It works! Thanks a lot!!!

@kcisneros
Copy link

I'm having the same error. I moved over the assets under "themes, toha, assets, images" to a top level dir "assets/images/site". Please advise

Error: Error building site: failed to render pages: render of "home" failed: execute of template failed: template: index.html:35:8: executing "index.html" at <partial "navigators/navbar.html" .>: error calling partial:

@darkwizard242
Copy link

@kcisneros could you share the complete error? It should have something further after error calling partial: which will log certain line/column numbers that can help debugging the issue you are facing. Though it seems to be relatively the same issue.

Additionally, If you copied the site logos from themes/toha/assets/images to your site/project's assets/images/site directory - did you also update the file names in your config.yaml to match the files that were copied over?

@kcisneros
Copy link

hi @darkwizard242 Here's my complete error so far.

MacBook-Pro:site user$ hugo server -t toha -w
Start building sites …
ERROR 2021/01/03 09:14:51 render of "taxonomy" failed: execute of template failed: template: _default/list.html:6:8: executing "_default/list.html" at <partial "header.html" .>: error calling partial: "/Users/user/hugo_site/site/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
ERROR 2021/01/03 09:14:51 render of "taxonomy" failed: execute of template failed: template: _default/list.html:6:8: executing "_default/list.html" at <partial "header.html" .>: error calling partial: "/Users/user/hugo_site/site/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
Built in 10 ms
Error: Error building site: failed to render pages: render of "home" failed: execute of template failed: template: index.html:15:8: executing "index.html" at <partial "header.html" .>: error calling partial: "/Users/user/hugo_site/site/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType

The config.yaml (initially .toml) did not have content, so I added in the logos under the site params to the following path, if that's wrong I can update it but I believe the path is right..

  logo:
    main: /assets/images/site/main-logo.png
    inverted: /assets/images/site/inverted-logo.png
    favicon: /assets/images/site/favicon.png
   

@hossainemruz
Copy link
Member

@kcisneros use,

  logo:
    main: /images/site/main-logo.png
    inverted: /images/site/inverted-logo.png
    favicon: /images/site/favicon.png

@kcisneros
Copy link

@hossainemruz Thank you for the response. I updated the paths accordingly and am still getting an error when trying to run hugo server -t toha -w

MacBook-Pro:site user$ hugo server -t toha -w
Start building sites …
ERROR 2021/01/03 09:35:12 render of "taxonomy" failed: execute of template failed: template: _default/list.html:33:8: executing "_default/list.html" at <partial "footer.html" .>: error calling partial: "/Users/user/hugo_site/site/themes/toha/layouts/partials/footer.html:25:35": execute of template failed: template: partials/footer.html:25:35: executing "partials/footer.html" at <$themeLogo.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
ERROR 2021/01/03 09:35:12 render of "taxonomy" failed: execute of template failed: template: _default/list.html:33:8: executing "_default/list.html" at <partial "footer.html" .>: error calling partial: "/Users/user/hugo_site/site/themes/toha/layouts/partials/footer.html:25:35": execute of template failed: template: partials/footer.html:25:35: executing "partials/footer.html" at <$themeLogo.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
Built in 9 ms
Error: Error building site: failed to render pages: render of "home" failed: execute of template failed: template: index.html:38:8: executing "index.html" at <partial "sections/home.html" .>: error calling partial: "/Users/user/hugo_site/site/themes/toha/layouts/partials/sections/home.html:29:31": execute of template failed: template: partials/sections/home.html:29:31: executing "partials/sections/home.html" at <$authorImage.Fit>: nil pointer evaluating resource.Resource.Fit

@hossainemruz
Copy link
Member

Can you try updating to the latest master? I have pushed some fixes there. Also, please point me to your repository so that I can inspect where the problem is.

@kcisneros
Copy link

@hossainemruz thank you for taking a look, here's my repo: https://github.com/kcisneros/kcisneros-site I believe I am on latest, I tried a fresh install and set up about two hours ago. Is there a way I can check the hash version locally to ensure I have what's on master?

@hossainemruz
Copy link
Member

Hey @kcisneros. Your site build in my PC without any issue.

╭─    ~/go/src/github.com/hossainemruz/kcisneros-site    main ────────────── ✔  10:37:24 PM  
❯ hugo server
Start building sites … 
WARN 2021/01/03 22:38:16 found no layout file for "HTML" for kind "taxonomy": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
WARN 2021/01/03 22:38:16 found no layout file for "HTML" for kind "taxonomy": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
WARN 2021/01/03 22:38:16 found no layout file for "HTML" for kind "home": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.

                   | EN  
-------------------+-----
  Pages            |  3  
  Paginator pages  |  0  
  Non-page files   |  0  
  Static files     |  0  
  Processed images |  0  
  Aliases          |  0  
  Sitemaps         |  1  
  Cleaned          |  0  

Built in 3 ms
Watching for changes in /home/emruz/go/src/github.com/hossainemruz/kcisneros-site/{archetypes,assets}
Watching for config changes in /home/emruz/go/src/github.com/hossainemruz/kcisneros-site/config.yaml
Environment: "development"
Serving pages from memory
Running in Fast Render Mode. For full rebuilds on change: hugo server --disableFastRender
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
Press Ctrl+C to stop

What hugo version are you using?

@kcisneros
Copy link

Thank you for the confirmation, I was hoping it wasn't something with my machine, sadly it looks like it may be that.

hugo version
Hugo Static Site Generator v0.80.0/extended darwin/amd64 BuildDate: unknown

I updated to Big Sur two days ago, I wonder if there's an incompatibility there.

@hossainemruz
Copy link
Member

I can confirm it also built in hugo v0.80.0.

❯ hugo version
Hugo Static Site Generator v0.80.0-792EF0F4 linux/amd64 BuildDate: 2020-12-31T13:37:

@kcisneros
Copy link

Ok, thank you for confirming. I'll try and narrow down further.

@b-reich
Copy link
Author

b-reich commented Jan 5, 2021

https://toha-guides.netlify.app/posts/getting-started/prepare-site/ should then also be adjusted or not?

@serverfriendsorg
Copy link
Contributor

I have the same problem, I updated today to v2.0.0 and get the following terminal output:

ERROR 2021/03/14 11:41:40 render of "home" failed: execute of template failed: template: index.html:15:8: executing "index.html" at <partial "header.html" .>: error calling partial: "/home/serverfriendsorg/projects/gitlab.com/serverfriends_org/ws_serverfriendsorg/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
ERROR 2021/03/14 11:41:40 render of "section" failed: execute of template failed: template: _default/list.html:6:8: executing "_default/list.html" at <partial "header.html" .>: error calling partial: "/home/serverfriendsorg/projects/gitlab.com/serverfriends_org/ws_serverfriendsorg/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
ERROR 2021/03/14 11:41:40 render of "section" failed: execute of template failed: template: section/privacy.html:6:8: executing "section/privacy.html" at <partial "header.html" .>: error calling partial: "/home/serverfriendsorg/projects/gitlab.com/serverfriends_org/ws_serverfriendsorg/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
ERROR 2021/03/14 11:41:40 render of "section" failed: execute of template failed: template: section/imprint.html:6:8: executing "section/imprint.html" at <partial "header.html" .>: error calling partial: "/home/serverfriendsorg/projects/gitlab.com/serverfriends_org/ws_serverfriendsorg/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType
Built in 46 ms
Error: Error building site: failed to render pages: render of "page" failed: execute of template failed: template: _default/search.html:6:8: executing "_default/search.html" at <partial "header.html" .>: error calling partial: "/home/serverfriendsorg/projects/gitlab.com/serverfriends_org/ws_serverfriendsorg/themes/toha/layouts/partials/header.html:11:31": execute of template failed: template: partials/header.html:11:31: executing "partials/header.html" at <$favicon.MediaType.SubType>: nil pointer evaluating resource.Resource.MediaType

I renamed my static files directory to assets.

Here are the files contents:

navbar-2.html

<nav class="navbar navbar-expand-lg top-navbar final-navbar shadow">
    <div class="container">
      <a class="navbar-brand" href="{{ .navBrandURL }}">
        <img src="/assets/images/main-logo.png">
        {{- .title -}}
      </a>
      <button class="navbar-toggler navbar-light" type="button" {{ if .hasToggleButton }}onclick="toggleSidebar()"{{ end }}>
        <span class="navbar-toggler-icon"></span>
      </button>

      <div class="collapse navbar-collapse" id="top-nav-items">
        <ul class="navbar-nav ml-auto">
        </ul>
      </div>
    </div>
</nav>

imprint.html

{{ define "header" }}
    <!-- Put your custom css file link here -->
    <link rel="stylesheet" href="/assets/css/imprint.css" />
{{ end }}

{{ define "navbar" }}
    <!-- Add navbar to your about page -->
    {{ partial "navbar-2.html" (dict "baseURL" .Site.BaseURL "title" .Site.Title "hasToggleButton" false "navBrandURL"  .Site.BaseURL ) }}
{{ end }}

{{ define "content" }}
    <!-- Put your about page content here -->
    <div class="container about-content">
        <h1>Imprint</h1>
        {{ .Content }}
    </div>
{{ end }}

privacy.html

{{ define "header" }}
    <!-- Put your custom css file link here -->
    <link rel="stylesheet" href="/assets/css/privacy.css" />
{{ end }}

{{ define "navbar" }}
    <!-- Add navbar to your about page -->
    {{ partial "navbar-2.html" (dict "baseURL" .Site.BaseURL "title" .Site.Title "hasToggleButton" false "navBrandURL"  .Site.BaseURL ) }}
{{ end }}

{{ define "content" }}
    <!-- Put your about page content here -->
    <div class="container about-content">
        <h1>Privacy</h1>
        {{ .Content }}
    </div>
{{ end }}

@hossainemruz
Copy link
Member

@serverfriendsorg can you point me to your repository? I believe there are some misconfigurations there.

@serverfriendsorg
Copy link
Contributor

serverfriendsorg commented Mar 14, 2021

@hossainemruz Thanks, I've tried already to find the error by myself but couldn't find it yet.
Here is the link: https://gitlab.com/serverfriends_org/ws_steven/

@hossainemruz
Copy link
Member

hossainemruz commented Mar 14, 2021

@serverfriendsorg I have sent you an MR. That should fix the issue.

@serverfriendsorg
Copy link
Contributor

serverfriendsorg commented Mar 20, 2021

@serverfriendsorg I have sent you an MR. That should fix the issue.

@hossainemruz Thanks, I have commented on your PR seems I don't have permission to merge your changes into my main branch.

@hossainemruz
Copy link
Member

I don't have permission to merge your changes into my main branch.

@serverfriendsorg How I can give you permission to merge the MR. I don't see any settings for that. I am not experienced with gitlab.

@a0m0rajab
Copy link

@hossainemruz, I got the same issue because of the same problem, I think that you need to mention it somewhere in the docs!

@hossainemruz
Copy link
Member

Yes

@serverfriendsorg
Copy link
Contributor

serverfriendsorg commented Mar 27, 2021

I don't have permission to merge your changes into my main branch.

@serverfriendsorg How I can give you permission to merge the MR. I don't see any settings for that. I am not experienced with gitlab.

@hossainemruz Sorry for the late response. I was able to merge your MR by starting a new pipeline from the merge request. Thanks for your help, everything is now as it should be. :)

@b-reich
Copy link
Author

b-reich commented Apr 8, 2021

@hossainemruz @serverfriendsorg is the issue solved?

@serverfriendsorg
Copy link
Contributor

serverfriendsorg commented Apr 8, 2021 via email

@hossainemruz
Copy link
Member

@b-reich try updating to the latest release. Let me know if you still face the issue.

@hossainemruz
Copy link
Member

Closing this issue. Feel free to re-open if you still face the issue after updating to the latest version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

9 participants