We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feature Description
Show "summary" and "last modified" under the title at the top of the page
Problem/Solution
Right now this information is not shown
The text was updated successfully, but these errors were encountered:
You can add summary or subtitle to the frontmatter and add similar code to the single layout:
summary
subtitle
<div class="content mt--12"> <div class="text-xl mb-6 text-justify">{{ .Params.subtitle }}</div> <img src="{{ .Params.featuredImage | absURL }}" alt="{{ .Title }}" title="{{ .Title }}" width="100%" loading="lazy">
featuredImage
Here is what it looks like.
Sorry, something went wrong.
For the last updated section, you just need move this
{{ partial "components/last-updated.html" . }}
to the top of your page + change CSS according to your design.
No branches or pull requests
Feature Description
Show "summary" and "last modified" under the title at the top of the page
Problem/Solution
Right now this information is not shown
The text was updated successfully, but these errors were encountered: