Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
site_name: GPAC wiki
site_url: https://wiki.gpac.io/
repo_name: gpac/wiki
edit_uri: edit/master/docs/
site_author: GPAC contributors
extra:
keywords_file: 'data/keywords.json'
social:
- icon: fontawesome/brands/github
link: https://github.com/gpac/gpac
name: GPAC source code
extra_javascript:
- javascripts/levels.js
- javascripts/main.js
Expand Down Expand Up @@ -52,6 +58,7 @@ theme:
- navigation.top
- tables
- def_list
- content.action.edit
- content.code.select
- content.code.annotate
- content.code.copy
Expand All @@ -64,7 +71,7 @@ theme:
- search.highlight
- search.share
- search.suggest
repo_url: https://github.com/gpac/gpac/
repo_url: https://github.com/gpac/wiki
plugins:
- search
- tags:
Expand Down
4 changes: 4 additions & 0 deletions overrides/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,10 @@
{% block container %}
<div class="md-content" data-md-component="content">
<article class="md-content__inner md-typeset">
{% set p = page and page.file and page.file.src_path %}
{% if page and page.edit_url and not page.is_homepage and not (p and (p.startswith('Filters/') or p.startswith('MP4Box/'))) %}
{% include "partials/actions.html" %}
{% endif %}
{% block content %}
{% include "partials/content.html" %}
{% endblock %}
Expand Down
12 changes: 9 additions & 3 deletions overrides/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,15 @@
{% include "partials/source.html" %}
</div>
{% endif %}
<!-- <div class="md-header__option md-header__option--mobile">
{% include "partials/palette.html" %}
</div> -->
<a href="https://github.com/gpac/gpac"
class="md-header__button md-icon"
title="GPAC source code"
aria-label="GPAC source code"
target="_blank" rel="noopener">
<i class="fa-brands fa-github" style="font-size:1rem; line-height:1.5; margin-top:0.5rem !important;"></i>
<div class="gpac-link__label">gpac</div>
</a>

<div class="md-header__settings">
<button class="md-header__settings-button" aria-label="Settings" title="Settings">
<i class="fas fa-cog"></i>
Expand Down