Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
910e0b1
GRO-683-2 stubs out using astro for docs pages
bpander Jul 16, 2026
20871b1
GRO-683-2 stub out a way to make liquid renderer more resilient (so i…
bpander Jul 17, 2026
ed86edb
GRO-683-2 quick and dirty exclude docs from jekyll build
bpander Jul 17, 2026
6b265da
GRO-683-2 handle readme->index, highlight active nav item in left nav
bpander Jul 20, 2026
dc0c293
GRO-683-2 fix build
bpander Jul 20, 2026
b6df2e6
GRO-683-2 fix routing for previous versions, fix left nav highlight
bpander Jul 20, 2026
657f41f
GRO-683-2 fix issue where whitespace was too greedily removed (was ge…
bpander Jul 22, 2026
4089f34
GRO-683-2 disallow liquid syntax errors on latest, only allow 3 (the …
bpander Jul 22, 2026
affb473
GRO-683-2 fix issue where plaintext isn't specified as the default wh…
bpander Jul 22, 2026
2bfd796
GRO-683-2 skip unnecessary redirect (which isn't set up in pr envs)
bpander Jul 23, 2026
3fc820a
GRO-683-2 WIP jekyll-style redirects in astro
bpander Jul 23, 2026
aac644b
GRO-683-2 fix routing issues
bpander Jul 23, 2026
a663223
GRO-683-2 WIP port old docs layout
bpander Jul 23, 2026
6bbd9ec
GRO-683-2 fix 404s in previous versions + ensure gifs and json files …
bpander Aug 4, 2026
3f488dc
GRO-683-2 ports version support tags and warnings to astro (#1260)
bpander Aug 4, 2026
d8cadd7
GRO-683-2 speed up ci builds
bpander Aug 4, 2026
5976787
GRO-683-2 fix 404s in dev builds
bpander Aug 4, 2026
200f3b4
GRO-683-2 fix "hide home link" logic and remove no-longer-needed files
bpander Aug 4, 2026
f6e598f
GRO-683-2 ports jekyll_generate_llms_files_plugin.rb to astro now tha…
bpander Aug 5, 2026
c82d1b6
GRO-683-2 ensure docs html files are added to the sitemap + some cleanup
bpander Aug 5, 2026
04c892a
GRO-683-2 remove no-longer-needed files
bpander Aug 5, 2026
d3a2bac
GRO-683-2 fix precedence when multiple files have the same redirect_f…
bpander Aug 5, 2026
93f783c
GRO-683-2 cleanup
bpander Aug 5, 2026
32fbe1d
GRO-683-2 prevent files from redirecting to themselves
bpander Aug 10, 2026
63b0888
GRO-683-2 ignore redirect_from entry if it'd redirect from a valid pa…
bpander Aug 10, 2026
e0a621c
GRO-683-2 add unversioned llms txt files at the docs root (matching p…
bpander Aug 11, 2026
60db2d5
GRO-683-2 minor tweak so null or undefined gets output as empty strin…
bpander Aug 11, 2026
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
1 change: 0 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ available_versions:
- v0.62
- v0.63
collections:
docs: { output: true }
community-posts: { output: true }
defaults:
- {
Expand Down
2 changes: 1 addition & 1 deletion _includes/docs-metadata.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<!-- Open Graph metadata -->
<meta property="og:site_name" content="Metabase | Business Intelligence, Dashboards, and Data Visualization" />
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ page.url | replace '/index.html', '' | prepend: site.url }}" />
<meta property="og:url" content="{{ page.url | replace: '/index.html', '' | prepend: site.url }}" />
<meta name="title" property="og:title" content="{{ title }}" />
<meta name="description" property="og:description" content="{{ desc }}" />
<meta name="image" property="og:image" content="{{ img }}" />
Expand Down
2 changes: 1 addition & 1 deletion _includes/docs/embedded-analytics-sdk-metadata.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<!-- Open Graph metadata -->
<meta property="og:site_name" content="Metabase | Business Intelligence, Dashboards, and Data Visualization" />
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ page.url | replace '/index.html', '' | prepend: site.url }}" />
<meta property="og:url" content="{{ page.url | replace: '/index.html', '' | prepend: site.url }}" />
<meta name="title" property="og:title" content="{{ title }}" />
<meta name="description" property="og:description" content="{{ desc }}" />
<meta name="image" property="og:image" content="{{ img }}" />
Expand Down
2 changes: 1 addition & 1 deletion _includes/docs_version.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{% unless page.version == version %}
{% assign support = site.data.version_support[version] %}
<li>
<a href="/docs/{{ version }}">
<a href="/docs/{{ version }}/">
<div class="version__dropdown--item">
<span>
{{version}}
Expand Down
61 changes: 0 additions & 61 deletions _includes/shared/right-hand-newsletter-subscribe-widget.html

This file was deleted.

30 changes: 0 additions & 30 deletions _layouts/doc_pages.html

This file was deleted.

1 change: 0 additions & 1 deletion _layouts/docs-api.html

This file was deleted.

57 changes: 0 additions & 57 deletions _layouts/docs.html

This file was deleted.

12 changes: 0 additions & 12 deletions _plugins/jekyll_dirname_payload_plugin.rb

This file was deleted.

Loading