alpha
Login
or
Join now
tokono.ma
/
diffuse-applets
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Experiment to rebuild Diffuse using web applets.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: Add queue to engines list
author
Steven Vandevelde
date
1 year ago
(Mar 27, 2025, 5:00 PM +0100)
commit
4332f361
4332f36144a5db1adf4de4285b88dd3ad79b9cb2
parent
30bf24dd
30bf24dda72504f94566d8f7acb323b033c3a168
+5
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
pages
index.astro
+5
-1
src/pages/index.astro
Reviewed
···
4
4
// import "@picocss/pico/css/pico.colors.css";
5
5
import "../styles/pages/index.css";
6
6
7
7
-
const engines = [{ url: "engine/audio/", title: "Audio" }];
7
7
+
const engines = [
8
8
+
{ url: "engine/audio/", title: "Audio" },
9
9
+
{ url: "engine/queue/", title: "Queue" },
10
10
+
];
11
11
+
8
12
const themes = [{ url: "themes/pilot/", title: "Pilot" }];
9
13
---
10
14