You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
11
+
permissions:
12
+
contents: read
13
+
pages: write
14
+
id-token: write
15
+
16
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
17
+
concurrency:
18
+
group: "pages"
19
+
cancel-in-progress: false
20
+
21
+
jobs:
22
+
build:
23
+
runs-on: ubuntu-latest
24
+
env:
25
+
GITHUB_PAGES: true
26
+
steps:
27
+
- name: Checkout repository
28
+
uses: actions/checkout@v4
29
+
30
+
- name: Setup Pages
31
+
uses: actions/configure-pages@v4
32
+
33
+
- name: Create homepage directory
34
+
run: mkdir -p _site
35
+
36
+
- name: Generate homepage using iFlow CLI
37
+
uses: vibe-ideas/iflow-cli-action@main
38
+
with:
39
+
prompt: |
40
+
Please read only the README.md file content from the current repository (do not read any other files), and convert it into a futuristic tech-style documentation website based on Reveal.js and save it as _site/index.html.
41
+
42
+
Requirements:
43
+
44
+
1. Use the Reveal.js framework to build a slideshow presentation, splitting the README content into multiple slide pages according to logical structure;
- Add custom CSS styles to enhance futuristic visual effects
104
+
- Ensure fast loading and smooth animation performance with optimized assets;
105
+
106
+
10. SEO and accessibility:
107
+
- Add complete meta tags and structured data
108
+
- Ensure keyboard navigation accessibility
109
+
- Add alt text and aria labels
110
+
- Optimize search engine indexing.
111
+
112
+
Please directly create a complete HTML file using inline CSS and JavaScript, ensuring the file is self-contained and can run directly in browsers. The design should feel like a futuristic tech interface from a sci-fi movie with a cyberpunk aesthetic.
0 commit comments