-
Notifications
You must be signed in to change notification settings - Fork 80
doc: add Google tag manager to integrated docs (v2-edge) #1456
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,100 @@ | ||
| {# ru-fu: copied from Furo, with modifications as stated below. Modifications are marked 'mod:'. #} | ||
|
|
||
| <div class="related-pages"> | ||
| {# mod: Per-page navigation #} | ||
| {% if meta %} | ||
| {% if 'sequential_nav' in meta %} | ||
| {% set sequential_nav = meta.sequential_nav %} | ||
| {% endif %} | ||
| {% endif %} | ||
| {# mod: Conditional wrappers to control page navigation buttons #} | ||
| {% if sequential_nav != "none" -%} | ||
| {% if next and (sequential_nav == "next" or sequential_nav == "both") -%} | ||
| <a class="next-page" href="{{ next.link }}"> | ||
| <div class="page-info"> | ||
| <div class="context"> | ||
| <span>{{ _("Next") }}</span> | ||
| </div> | ||
| <div class="title">{{ next.title }}</div> | ||
| </div> | ||
| <svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg> | ||
| </a> | ||
| {%- endif %} | ||
| {% if prev and (sequential_nav == "prev" or sequential_nav == "both") -%} | ||
| <a class="prev-page" href="{{ prev.link }}"> | ||
| <svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg> | ||
| <div class="page-info"> | ||
| <div class="context"> | ||
| <span>{{ _("Previous") }}</span> | ||
| </div> | ||
| {% if prev.link == pathto(master_doc) %} | ||
| <div class="title">{{ _("Home") }}</div> | ||
| {% else %} | ||
| <div class="title">{{ prev.title }}</div> | ||
| {% endif %} | ||
| </div> | ||
| </a> | ||
| {%- endif %} | ||
| {%- endif %} | ||
| </div> | ||
| <div class="bottom-of-page"> | ||
| <div class="left-details"> | ||
| {%- if show_copyright %} | ||
| <div class="copyright"> | ||
| {%- if hasdoc('copyright') %} | ||
| {% trans path=pathto('copyright'), copyright=copyright|e -%} | ||
| <a href="{{ path }}">Copyright</a> © {{ copyright }} | ||
| {%- endtrans %} | ||
| {%- else %} | ||
| {% trans copyright=copyright|e -%} | ||
| Copyright © {{ copyright }} | ||
| {%- endtrans %} | ||
| {%- endif %} | ||
| </div> | ||
| {%- endif %} | ||
|
|
||
| {# mod: removed "Made with" #} | ||
|
|
||
| {%- if last_updated -%} | ||
| <div class="last-updated"> | ||
| {% trans last_updated=last_updated|e -%} | ||
| Last updated on {{ last_updated }} | ||
| {%- endtrans -%} | ||
| </div> | ||
| {%- endif %} | ||
|
|
||
| {%- if show_source and has_source and sourcename %} | ||
| <div class="show-source"> | ||
| <a class="muted-link" href="{{ pathto('_sources/' + sourcename, true)|e }}" | ||
| rel="nofollow">Show source</a> | ||
| </div> | ||
| {%- endif %} | ||
| </div> | ||
| <div class="right-details"> | ||
|
|
||
| {# mod: replaced RTD icons with our links #} | ||
|
|
||
| {% if discourse %} | ||
| <div class="ask-discourse"> | ||
| <a class="muted-link" href="{{ discourse }}">Ask a question on Discourse</a> | ||
| </div> | ||
| {% endif %} | ||
|
|
||
| {% if github_url and github_version and github_folder %} | ||
|
|
||
| {% if github_issues %} | ||
| <div class="issue-github"> | ||
| <a class="muted-link" href="{{ github_url }}/issues/new?title=doc%3A+ADD+A+TITLE&body=DESCRIBE+THE+ISSUE%0A%0A---%0ADocument: {{ pagename }}{{ page_source_suffix }}">Open a GitHub issue for this page</a> | ||
| </div> | ||
| {% endif %} | ||
|
|
||
| <div class="edit-github"> | ||
| <a class="muted-link" href="{{ github_url }}/edit/{{ github_version }}{{ github_folder }}{{ pagename }}{{ page_source_suffix }}">Edit this page on GitHub</a> | ||
| </div> | ||
| {% endif %} | ||
|
|
||
| <a href="" class="js-revoke-cookie-manager muted-link">Manage your tracker settings</a> | ||
|
|
||
| </div> | ||
| </div> | ||
| </div> | ||
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.