Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
05bbb16
GRO-683-2 stubs out using astro for docs pages
bpander Jul 16, 2026
e233572
GRO-683-2 stub out a way to make liquid renderer more resilient (so i…
bpander Jul 17, 2026
5fb46b7
GRO-683-2 quick and dirty exclude docs from jekyll build
bpander Jul 17, 2026
7279651
GRO-683-2 handle readme->index, highlight active nav item in left nav
bpander Jul 20, 2026
7a957de
GRO-683-2 fix build
bpander Jul 20, 2026
1dc9b46
GRO-683-2 fix routing for previous versions, fix left nav highlight
bpander Jul 20, 2026
ec78816
GRO-683-2 fix issue where whitespace was too greedily removed (was ge…
bpander Jul 22, 2026
d028282
GRO-683-2 disallow liquid syntax errors on latest, only allow 3 (the …
bpander Jul 22, 2026
b19938c
GRO-683-2 fix issue where plaintext isn't specified as the default wh…
bpander Jul 22, 2026
5c8a8c4
GRO-683-2 skip unnecessary redirect (which isn't set up in pr envs)
bpander Jul 23, 2026
6c89810
GRO-683-2 WIP jekyll-style redirects in astro
bpander Jul 23, 2026
9d23e89
GRO-683-2 fix routing issues
bpander Jul 23, 2026
10dd5a5
GRO-683-2 WIP port old docs layout
bpander Jul 23, 2026
2de46a5
GRO-683-2 fix 404s in previous versions + ensure gifs and json files …
bpander Aug 4, 2026
e647107
GRO-683-2 ports version support tags and warnings to astro (#1260)
bpander Aug 4, 2026
a3b97b6
GRO-683-2 speed up ci builds
bpander Aug 4, 2026
4124067
GRO-683-2 fix 404s in dev builds
bpander Aug 4, 2026
d658ca5
GRO-683-2 fix "hide home link" logic and remove no-longer-needed files
bpander Aug 4, 2026
49c755c
GRO-683-2 ports jekyll_generate_llms_files_plugin.rb to astro now tha…
bpander Aug 5, 2026
e9e22b1
GRO-683-2 ensure docs html files are added to the sitemap + some cleanup
bpander Aug 5, 2026
20e1f4c
GRO-683-2 remove no-longer-needed files
bpander Aug 5, 2026
a1b2b5a
GRO-683-2 fix precedence when multiple files have the same redirect_f…
bpander Aug 5, 2026
53548fa
GRO-683-2 cleanup
bpander Aug 5, 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="{{ site.url }}{{ 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="{{ site.url }}{{ 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