This repository was archived by the owner on Feb 19, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 61
In "site-footer.html" add class "z-index-10". #126
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fixes #1890 Closes #1911
Fixes #3598
It might be very useful for building tag clouds.
This enables `AND` (`intersect`) and `OR` (`union`) filters when combined with `where`.
Example:
```go
{{ $pages := where .Site.RegularPages "Type" "not in" (slice "page" "about") }}
{{ $pages := $pages | union (where .Site.RegularPages "Params.pinned" true) }}
{{ $pages := $pages | intersect (where .Site.RegularPages "Params.images" "!=" nil) }}
```
The above fetches regular pages not of `page` or `about` type unless they are pinned. And finally, we exclude all pages with no `images` set in Page params.
Fixes #3174
This commit adds some section related methods that have been asked for: * .CurrentSection * .IsDescendant * .IsAncestor Fixes #3591
This applies to both regular templates and shortcodes. So, if the site language is French and the output format is AMP, this is the (start) of the lookup order for the home page: 1. index.fr.amp.html 2. index.amp.html 3. index.fr.html 4. index.html 5. ... Fixes #3360
Take the new version as a string value.
f3c88b08 Add warning on GitInfo and Shallow Clones fa5be591 Make the two common Taxonomy templates explicit 4a81c507 Update pull request link in showcase.html f751e57a Update christianmendoza.me in the showcase d582419b Remove commit message prefix from showcase addition guide d12791cf Fix path for screenshot in showcase addition guide e487b916 Add invincible.site to the showcase c85cfccf Update guide for showcase additions c44b31c1 Fix spelling dc10d7f6 Add slightly better GitHub install description 2611980f Revert "Add workaround to Fetch from GitHub documentation" b2e56907 Fix Git commit link in footer b025a638 Regenerate commands docs for v0.24.1 0741ad08 Update README.md 942d130a Add branch info to README e8c36390 Set hugoDocs/master to 0.24.1 c4e21471 Add workaround to Fetch from GitHub documentation db0a3c08 Fix typo in release note git-subtree-dir: docs git-subtree-split: f3c88b081022c945f010cdbfcd25e0008e0c3f5b
This reverts commit 729be80.
We are going to release Hugo 0.25 today, and pulling in lots of unknown and untested changes is a bad idea. This reverts commit d2c24ba.
When working with content from IntelliJ IDE, like WebStorm, every file save is followed by two events: "RENAME" and then "CREATE".
Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. - [Release notes](https://github.com/jonschlinkert/mixin-deep/releases) - [Commits](jonschlinkert/mixin-deep@1.3.1...1.3.2) Signed-off-by: dependabot[bot] <support@github.com>
33701 -> 32994 bytes.
Before: 359 KB (368.177 bytes) After: 311 KB (319.078 bytes)
Now it's optimized, we reduce the number of DNS requests also. Also add an `alt` for the img.
* specify `private: true` since the package isn't published on npm * add missing repository, bug and homepage properties
|
Hey; I have not been watching this repo for some reason, and these PRs have been sadly neglected. I would love to merge this, but it needs to be rebased against master. I have put this repo back on my watch list. |
This reverts commit c812967.
Closes gohugoio#139
In "main.css" add class z-index-10 with property z-index: 10. This fix the issue in which tabs come over the navbar on mobile. Fixes gohugoio#125
Add z-max class to navbar containing div. I add class z-max because navbar should always be at the top of every thing. Fixes gohugoio#125
Add z-999 class to navbar containing div. I see that z-max is not working. Fixes gohugoio#125
|
I have already signed the agreement.. I don't know why it still shows pending |
Probably a mismatch between email address used in commit and email address used in your GitHub account. Note that you can register more than one email address to fix this. |
|
This PR now has 4K commits, which obviously isn't something I can merge. |
|
It makes sense. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

In "main.css" add class z-index-10 with property z-index: 10.
This fix the issue in which tabs come over the navbar on mobile.
Fixes #125