-
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
An extra post/ in the FullFilePath #732
Comments
@spf13 - you know this code ... there is a confusion between Dir() ("post/") and Path() ("post/first/index.html") ... I guess Dir() should return "/home/myhugoproject/content/". |
tychoish
pushed a commit
to tychoish/hugo
that referenced
this issue
Aug 13, 2017
bep
added a commit
that referenced
this issue
Jul 12, 2020
bep
added a commit
that referenced
this issue
Jul 12, 2020
bep
added a commit
that referenced
this issue
Jul 12, 2020
bep
added a commit
that referenced
this issue
Jul 13, 2020
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
{{ .Page.FullFilePath }}
inside a shortcode producespost/post/first.md
for the filepost/first.md
.How to reproduce:
hugo new post/first.md
mkdir -p layouts/shortcodes
layouts/shortcodes/path.html
with the following content:{{ .Page.FullFilePath }}
post/first.md
:{{% path %}}
hugo -D -t hyde
grep post/ public/post/first/index.html
This will output
<p>post/post/first.md
.The text was updated successfully, but these errors were encountered: