Commit
Message
Changed Files (8)
-
deleted .abbaye/theme/git_blob.html.j2
diff --git a/.abbaye/theme/git_blob.html.j2 b/.abbaye/theme/git_blob.html.j2 deleted file mode 100644 index ec77c10..0000000 --- a/.abbaye/theme/git_blob.html.j2 +++ /dev/null @@ -1,38 +0,0 @@ -<!doctype html> -<html lang="{{ lang | default(value='en') }}"> -<head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>{{ project_name }} — {{ filename }}</title> - <link rel="stylesheet" href="{{ root_path }}static/site.css" /> -</head> -<body> - <header> - <a href="{{ root_path }}" class="site-title">{{ project_name }}</a> - <nav> - <a href="{{ root_path }}repository/index.html">Log</a> - <a href="{{ root_path }}repository/refs.html">Refs</a> - </nav> - </header> - <main> - <nav class="breadcrumb"> - {% for crumb in breadcrumbs %} - {% if not loop.last %}<span class="breadcrumb-sep">/</span>{% endif %} - {% if crumb.url %}<a href="{{ crumb.url }}">{{ crumb.name | escape }}</a>{% else %}<span>{{ crumb.name | escape }}</span>{% endif %} - {% endfor %} - </nav> - - <p class="tree-rev">at <a class="hash" href="{{ commit_url }}">{{ commit_hash_short }}</a></p> - - {% if is_binary %} - <p class="blob-notice">Binary file ({{ size }} bytes)</p> - {% elif too_large %} - <p class="blob-notice">File too large to display ({{ size }} bytes)</p> - {% elif content_html %} - <div class="blob-content">{{ content_html | safe }}</div> - {% else %} - <p class="blob-notice">Empty file</p> - {% endif %} - </main> -</body> -</html> -
deleted .abbaye/theme/git_commit.html.j2
diff --git a/.abbaye/theme/git_commit.html.j2 b/.abbaye/theme/git_commit.html.j2 deleted file mode 100644 index 246ab98..0000000 --- a/.abbaye/theme/git_commit.html.j2 +++ /dev/null @@ -1,65 +0,0 @@ -<!doctype html> -<html lang="{{ lang | default(value='en') }}"> -<head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>{{ project_name }} — {{ commit.hash_short }}</title> - <link rel="stylesheet" href="{{ root_path }}static/site.css" /> -</head> -<body> - <header> - <a href="{{ root_path }}" class="site-title">{{ project_name }}</a> - <a href="../index.html">← Log</a> - <nav> - <a href="../index.html">Log</a> - <a href="../refs.html">Refs</a> - </nav> - </header> - <main> - <h2 class="section-heading">Commit{% if has_browse %} <a class="hash" href="../browse/{{ commit.hash }}/">browse files</a>{% endif %}</h2> - <div class="commit-meta"> - <dl> - <dt>Hash</dt> - <dd><span class="hash-full">{{ commit.hash }}</span></dd> - <dt>Author</dt> - <dd>{{ commit.author_name }} <{{ commit.author_email }}></dd> - <dt>Date</dt> - <dd><time datetime="{{ commit.date_iso }}">{{ commit.datetime_display }}</time></dd> - {% if commit.parents %} - <dt>Parent{% if commit.parents | length > 1 %}s{% endif %}</dt> - <dd> - {% for p in commit.parents %} - <a class="hash" href="{{ p.hash }}.html">{{ p.hash_short }}</a>{% if not loop.last %} {% endif %} - {% endfor %} - </dd> - {% endif %} - </dl> - </div> - <h2 class="section-heading">Message</h2> - <div class="commit-message">{{ commit.subject }}{% if commit.body %} - -{{ commit.body }}{% endif %}</div> - {% if changed_files %} - <h2 class="section-heading">Changed Files ({{ changed_files | length }})</h2> - <ul class="files-list"> - {% for f in changed_files %} - <li> - <details> - <summary> - <span class="badge badge-{{ f.status }}">{{ f.status }}</span> - <span class="file-path">{{ f.path }}</span> - </summary> - {% if f.diff_lines %} - <table class="diff-table"><tbody> - {% for line in f.diff_lines %}<tr class="diff-{{ line.kind }}"><td class="diff-cell">{{ line.content }}</td></tr> - {% endfor %} - </tbody></table> - {% endif %} - </details> - </li> - {% endfor %} - </ul> - {% endif %} - </main> -</body> -</html> -
deleted .abbaye/theme/git_log.html.j2
diff --git a/.abbaye/theme/git_log.html.j2 b/.abbaye/theme/git_log.html.j2 deleted file mode 100644 index 088ec5f..0000000 --- a/.abbaye/theme/git_log.html.j2 +++ /dev/null @@ -1,63 +0,0 @@ -<!doctype html> -<html lang="{{ lang | default(value='en') }}"> -<head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>{{ project_name }} — {{ current_branch }}</title> - <link rel="stylesheet" href="{{ root_path }}static/site.css" /> -</head> -<body> - <header> - <a href="{{ root_path }}" class="site-title">{{ project_name }}</a> - <nav> - <a href="index.html" class="active">Log</a> - <a href="refs.html">Refs</a> - </nav> - </header> - <main> - {% if clone_url %} - <div class="clone-box"> - <span class="clone-label">Clone</span> - <span class="clone-url">git clone {{ clone_url }}</span> - </div> - {% endif %} - - {% if branch_nav | length > 1 %} - <div class="branch-switcher"> - {% for b in branch_nav %} - <a href="{{ b.filename }}"{% if b.is_current %} class="active"{% endif %}>{{ b.short_name }}</a> - {% endfor %} - </div> - {% endif %} - - <h2 class="section-heading">{{ current_branch }}</h2> - <table> - <thead> - <tr> - <th>Hash</th> - <th>Subject</th> - <th>Author</th> - <th>Date</th> - </tr> - </thead> - <tbody> - {% for commit in commits %} - <tr> - <td class="commit-hash-cell"> - <a class="hash" href="commit/{{ commit.hash }}.html">{{ commit.hash_short }}</a>{% for badge in commit.ref_badges %}<span class="ref-badge ref-badge-{{ badge.kind }}">{{ badge.label }}</span>{% endfor %} - </td> - <td>{{ commit.subject }}</td> - <td>{{ commit.author_name }}</td> - <td><time datetime="{{ commit.date_iso }}">{{ commit.date }}</time></td> - </tr> - {% endfor %} - </tbody> - </table> - {% if truncated %} - <p style="margin-top:1rem; font-size:0.85rem; color:var(--text-muted);"> - Showing the {{ commits | length }} most recent commits. - </p> - {% endif %} - </main> -</body> -</html> -
deleted .abbaye/theme/git_refs.html.j2
diff --git a/.abbaye/theme/git_refs.html.j2 b/.abbaye/theme/git_refs.html.j2 deleted file mode 100644 index e4ff242..0000000 --- a/.abbaye/theme/git_refs.html.j2 +++ /dev/null @@ -1,53 +0,0 @@ -<!doctype html> -<html lang="{{ lang | default(value='en') }}"> -<head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>{{ project_name }} — Refs</title> - <link rel="stylesheet" href="{{ root_path }}static/site.css" /> -</head> -<body> - <header> - <a href="{{ root_path }}" class="site-title">{{ project_name }}</a> - <nav> - <a href="index.html">Log</a> - <a href="refs.html" class="active">Refs</a> - </nav> - </header> - <main> - {% if tags %} - <h2 class="section-heading">Tags</h2> - <table> - <thead><tr><th>Tag</th><th>Hash</th></tr></thead> - <tbody> - {% for ref in tags %} - <tr id="tag-{{ ref.short_name }}"> - <td><span class="ref-kind-tag">{{ ref.short_name | escape }}</span></td> - <td><a class="hash" href="commit/{{ ref.hash }}.html">{{ ref.hash_short }}</a></td> - </tr> - {% endfor %} - </tbody> - </table> - {% endif %} - - {% if branches %} - <h2 class="section-heading">Branches</h2> - <table> - <thead><tr><th>Branch</th><th>Hash</th></tr></thead> - <tbody> - {% for ref in branches %} - <tr> - <td><span class="ref-kind-branch">{{ ref.short_name }}</span></td> - <td><a class="hash" href="commit/{{ ref.hash }}.html">{{ ref.hash_short }}</a></td> - </tr> - {% endfor %} - </tbody> - </table> - {% endif %} - - {% if not tags and not branches %} - <p style="color: var(--text-muted);">No refs found.</p> - {% endif %} - </main> -</body> -</html> -
deleted .abbaye/theme/git_tree.html.j2
diff --git a/.abbaye/theme/git_tree.html.j2 b/.abbaye/theme/git_tree.html.j2 deleted file mode 100644 index 27fe6fc..0000000 --- a/.abbaye/theme/git_tree.html.j2 +++ /dev/null @@ -1,45 +0,0 @@ -<!doctype html> -<html lang="{{ lang | default(value='en') }}"> -<head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>{{ project_name }} — {{ dir_path | default(value="~") }}</title> - <link rel="stylesheet" href="{{ root_path }}static/site.css" /> -</head> -<body> - <header> - <a href="{{ root_path }}" class="site-title">{{ project_name }}</a> - <nav> - <a href="{{ root_path }}repository/index.html">Log</a> - <a href="{{ root_path }}repository/refs.html">Refs</a> - </nav> - </header> - <main> - <nav class="breadcrumb"> - {% for crumb in breadcrumbs %} - {% if not loop.last %}<span class="breadcrumb-sep">/</span>{% endif %} - {% if crumb.url %}<a href="{{ crumb.url }}">{{ crumb.name | escape }}</a>{% else %}<span>{{ crumb.name | escape }}</span>{% endif %} - {% endfor %} - </nav> - - <table class="tree-table"> - <tbody> - {% for entry in entries %} - <tr> - <td class="tree-mode tree-mode-{{ entry.kind }}"></td> - <td> - {% if entry.kind == "tree" %} - <a class="tree-entry-tree" href="{{ entry.url }}">{{ entry.name | escape }}/</a> - {% else %} - <a class="tree-entry-blob" href="{{ entry.url }}">{{ entry.name | escape }}</a> - {% endif %} - </td> - </tr> - {% endfor %} - </tbody> - </table> - - <p class="tree-rev">at <a class="hash" href="{{ commit_url }}">{{ commit_hash_short }}</a></p> - </main> -</body> -</html> -
deleted .abbaye/theme/markdown.html.j2
diff --git a/.abbaye/theme/markdown.html.j2 b/.abbaye/theme/markdown.html.j2 deleted file mode 100644 index 0f6f414..0000000 --- a/.abbaye/theme/markdown.html.j2 +++ /dev/null @@ -1,177 +0,0 @@ -<!doctype html> -<html lang="en"> -<head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>{{ title }}</title> - <style> - :root { - --bg: #f5f0e8; - --text: #292524; - --accent: #d97706; - --border: #a8a29e; - --border-strong: #44403c; - --link: #92400e; - --link-hover-bg: #d97706; - --link-hover-text: #faf6f0; - --meta: #78716c; - --pre-bg: #eae2d4; - --font: "Courier New", Courier, monospace; - } - @media (prefers-color-scheme: dark) { - :root { - --bg: #1c1917; - --text: #faf6f0; - --accent: #fbbf24; - --border: #57534e; - --border-strong: #fbbf24; - --link: #fbbf24; - --link-hover-bg: #fbbf24; - --link-hover-text: #1c1917; - --meta: #a8a29e; - --pre-bg: #292524; - } - } - :root.dark { - --bg: #1c1917; - --text: #faf6f0; - --accent: #fbbf24; - --border: #57534e; - --border-strong: #fbbf24; - --link: #fbbf24; - --link-hover-bg: #fbbf24; - --link-hover-text: #1c1917; - --meta: #a8a29e; - --pre-bg: #292524; - } - :root.light { - --bg: #f5f0e8; - --text: #292524; - --accent: #d97706; - --border: #a8a29e; - --border-strong: #44403c; - --link: #92400e; - --link-hover-bg: #d97706; - --link-hover-text: #faf6f0; - --meta: #78716c; - --pre-bg: #eae2d4; - } - *, - *::before, - *::after { - box-sizing: border-box; - margin: 0; - padding: 0; - } - body { - font-family: var(--font); - background: var(--bg); - color: var(--text); - line-height: 1.6; - transition: background 0.2s, color 0.2s; - } - main { - max-width: 860px; - margin: 2.5rem auto; - padding: 0 1.5rem 4rem; - } - main h1, - main h2, - main h3, - main h4, - main h5, - main h6 { - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.3; - color: var(--text); - } - main h1 { - font-size: 1.5rem; - border-bottom: 2px solid var(--border-strong); - padding-bottom: 0.4rem; - } - main h2 { - font-size: 1.2rem; - border-bottom: 1px solid var(--border); - padding-bottom: 0.3rem; - } - main h3 { - font-size: 1.05rem; - } - main p { - margin-bottom: 1em; - } - main a { - color: var(--link); - text-decoration: underline; - transition: color 0.15s, background 0.15s; - } - main a:hover { - background: var(--link-hover-bg); - color: var(--link-hover-text); - } - main img { - max-width: 100%; - height: auto; - } - main pre { - background: var(--pre-bg); - border: 1px solid var(--border); - padding: 1em 1.25em; - overflow-x: auto; - margin-bottom: 1em; - font-size: 0.85em; - } - main code { - font-family: var(--font); - background: var(--pre-bg); - padding: 0.15em 0.4em; - font-size: 0.85em; - } - main pre code { - background: none; - padding: 0; - font-size: inherit; - } - main ul, - main ol { - padding-left: 1.5em; - margin-bottom: 1em; - } - main li { - margin-bottom: 0.2em; - } - main table { - border-collapse: collapse; - margin-bottom: 1em; - width: 100%; - } - main th, - main td { - border: 1px solid var(--border); - padding: 0.35em 0.75em; - text-align: left; - } - main th { - font-weight: bold; - } - main blockquote { - border-left: 3px solid var(--border); - padding: 0.5em 1em; - margin: 0 0 1em; - color: var(--meta); - } - .content { - padding: 1.5rem 0; - } - </style> -</head> -<body> - <main> - <div class="content"> - {{ content | safe }} - </div> - </main> -</body> -</html> -
deleted .abbaye/theme/root_index.html.j2
diff --git a/.abbaye/theme/root_index.html.j2 b/.abbaye/theme/root_index.html.j2 deleted file mode 100644 index 647c66b..0000000 --- a/.abbaye/theme/root_index.html.j2 +++ /dev/null @@ -1,66 +0,0 @@ -<!doctype html> -<html prefix="og: https://ogp.me/ns#" lang="{{lang|default(value='en')}}"> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - {% if config.site.fediverse_creator %}<meta name="fediverse:creator" content="{{ config.site.fediverse_creator }}" />{% endif %} - {% if config.site.opengraph %} - <meta property="og:title" content="{{ project_name }}" /> - <meta property="og:type" content="{{ config.site.opengraph.type|default(value='website') }}" /> - <meta property="og:image" content="{{ config.site.base_url }}/{{ config.site.opengraph.image }}" /> - {% if config.site.opengraph.image_alt_text %} - <meta property="og:image:alt" content="{{ config.site.opengraph.image_alt_text }}" /> - {% endif %} - <meta property="og:url" content="{{ config.site.opengraph.url|default(value=config.site.base_url)|safe }}" /> - <meta property="og:site_name" content="{{ project_name }}" /> - {% if config.site.opengraph.description %} - <meta property="og:description" content="{{ config.site.opengraph.description }}" /> - {% endif %} - {% endif %} - <title>{{ project_name }}</title> - <link - rel="alternate" - type="application/atom+xml" - title="{{ project_name }} Releases" - href="{{ atom_feed }}" - /> - <link rel="stylesheet" href="static/site.css" /> - </head> - <body> - <header> - <h1>{{ project_name }}</h1> - <a class="feed-link" href="{{ atom_feed }}"> - <span class="feed-icon" aria-hidden="true"></span> - Atom feed - </a> - </header> - <main class="versions-main"> - <h2 class="section-heading">Versions</h2> - <ul class="versions-list"> - {% for v in versions %} - <li> - <a class="version-link" href="{{ v.version }}/" - >{{ v.version }}</a - > - {% if loop.first %}<span class="badge-latest"><a href="latest">latest</a></span> - {% endif %} {% if v.date %}<time - class="version-date" - datetime="{{ v.date }}" - >{{ v.date }}</time - >{% endif %} - </li> - {% endfor %} - </ul> - {% if git_ui_enabled %} - <h2 class="section-heading">Repository</h2> - {% if git_ui_clone_url %} - <div class="clone-box"> - <span class="clone-label">Clone</span> - <span class="clone-url">git clone {{ git_ui_clone_url }} {{ project_name }}</span> - </div> - {% endif %} - <p class="repo-browse-link"><a href="repository/">Browse source →</a></p> - {% endif %} - </main> - </body> -</html> -
deleted .abbaye/theme/version_index.html.j2
diff --git a/.abbaye/theme/version_index.html.j2 b/.abbaye/theme/version_index.html.j2 deleted file mode 100644 index 9b0afb7..0000000 --- a/.abbaye/theme/version_index.html.j2 +++ /dev/null @@ -1,85 +0,0 @@ -<!doctype html> -<html prefix="og: https://ogp.me/ns#" lang="{{lang|default(value='en')}}"> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - {% if config.site.fediverse_creator %}<meta name="fediverse:creator" content="{{ config.site.fediverse_creator }}" />{% endif %} - {% if config.site.opengraph %} - <meta property="og:title" content="{{ project_name }} — {{ version }}" /> - <meta property="og:type" content="{{ config.site.opengraph.type|default(value='article') }}" /> - <meta property="og:image" content="{{config.site.base_url}}/{{ config.site.opengraph.image }}" /> - {% if config.site.opengraph.image_alt_text %} - <meta property="og:image:alt" content="{{ config.site.opengraph.image_alt_text }}" /> - {% endif %} - <meta property="og:url" content="{{ config.site.opengraph.url|default(value=config.site.base_url)|safe }}/{{ version }}" /> - <meta property="og:site_name" content="{{ project_name }}" /> - {% if config.site.opengraph.description %} - <meta property="og:description" content="{{ config.site.opengraph.description }}" /> - {% endif %} - {% endif %} - <title>{{ project_name }} — {{ version }}</title> - <link rel="stylesheet" href="../static/site.css" /> - </head> - <body> - <header> - <a href="../">← All versions</a> - <span class="title">{{ project_name }} — {{ version }}</span> - </header> - <div class="release-layout"> - <aside> - {% if repo_url %} - <h3>Repository</h3> - <p><a href="{{ repo_url }}">{{ repo_url }}</a></p> - {% endif %} - {% if git_ui_enabled %} - <h3>Source</h3> - <ul> - <li><a href="../repository/refs.html#tag-{{ version_tag }}">Browse {{ version_tag }}</a></li> - </ul> - {% endif %} {% if has_docs %} - <h3>Documentation</h3> - <ul> - <li><a href="docs/">📖 API docs</a></li> - {% if has_docs_tarball %} - <li><a href="docs.tar.gz">⬇ docs.tar.gz</a></li> - {% endif %} - </ul> - {% endif %} - {% if has_dist %} - <h3>Downloads</h3> - {% for cat in dist_categories %} - {% if cat.category %} - <h4>{{ cat.category }}</h4> - {% endif %} - {% for group in cat.groups %} - {% if group.name %} - <h5>{{ group.name }}</h5> - {% endif %} - {% if group.comment %} - <p class="dist-comment">{{ group.comment }}</p> - {% endif %} - <ul> - {% for file in group.files %} - <li> - <a href="dist/{{ file.name }}">⬇ {{ file.name }}</a> - <div class="dist-meta"> - {{ file.size_human }}<br /><code title="SHA-256" - >sha256: {{ file.sha256 }}</code - > - </div> - </li> - {% endfor %} - </ul> - {% endfor %} - {% endfor %} - {% endif %} - </aside> - <main class="release-content"> - {{ readme_html | safe }} {% if changelog_html %} - <hr class="changelog-divider" /> - <h2 class="changelog-heading">Changes in {{ version }}</h2> - {{ changelog_html | safe }} {% endif %} - </main> - </div> - </body> -</html>