Skip to content

Commit 61c3094

Browse files
committed
Fix sitemap headers and add sitemap-index
1 parent 60e074f commit 61c3094

121 files changed

Lines changed: 10790 additions & 77 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/static.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Deploy static content with custom headers
2+
on:
3+
push:
4+
branches: ["gh-pages"]
5+
workflow_dispatch:
6+
permissions:
7+
contents: read
8+
pages: write
9+
id-token: write
10+
jobs:
11+
deploy:
12+
environment:
13+
name: github-pages
14+
url: ${{ steps.deployment.outputs.page_url }}
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v3
19+
- name: Setup Pages
20+
uses: actions/configure-pages@v3
21+
- name: Upload artifact
22+
uses: actions/upload-pages-artifact@v2
23+
with:
24+
path: '.'
25+
- name: Deploy to GitHub Pages
26+
id: deployment
27+
uses: actions/deploy-pages@v2

.htaccess

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Files "sitemap.xml">
2+
ForceType application/xml
3+
</Files>
4+
<Files "sitemap-index.xml">
5+
ForceType application/xml
6+
</Files>

index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

robots.txt

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
1-
# robots.txt for llcuda v2.2.0
21
User-agent: *
32
Allow: /
4-
5-
# Sitemaps
3+
Sitemap: https://llcuda.github.io/sitemap-index.xml
64
Sitemap: https://llcuda.github.io/sitemap.xml
7-
Sitemap: https://llcuda.github.io/sitemap.xml.gz
8-
9-
# Crawl-delay
10-
Crawl-delay: 0
11-
12-
# Specific bot instructions
13-
User-agent: Googlebot
14-
Allow: /
15-
Crawl-delay: 0
16-
17-
User-agent: Bingbot
18-
Allow: /
19-
Crawl-delay: 0

site/404.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

site/api/client/index.html

Lines changed: 36 additions & 0 deletions
Large diffs are not rendered by default.

site/api/examples/index.html

Lines changed: 568 additions & 0 deletions
Large diffs are not rendered by default.

site/api/gguf/index.html

Lines changed: 35 additions & 0 deletions
Large diffs are not rendered by default.

site/api/graphistry/index.html

Lines changed: 16 additions & 0 deletions
Large diffs are not rendered by default.

site/api/models/index.html

Lines changed: 74 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)