Get started Standalone version
There are 4 ways to get started:
A. Install manually #
Download CSS archive and link
css/blades.standalone.css in the <head> of your website.
<link rel="stylesheet" href="css/blades.standalone.css" />
B. Usage from CDN #
<link rel="stylesheet" href="
https://cdn.jsdelivr.net/npm/@anyblades/blades@3/css/blades.standalone.min.css
"/>
Live example: /pallets/website/blob/main/src/pallets/templates/layout.html
Full list of CSS files available on CDN: /npm/@anyblades/blades@3/css
C. Install with NPM #
npm install @anyblades/blades
Then, @import sources into your CSS file:
@import "@anyblades/blades";
Alternatively, import standalone Blades CSS sources only (without underlying Pico CSS base styles):
@import "@anyblades/blades/standalone";
Live example using Tailwind: /anyblades/buildawesome-micro-starters/blob/main/tailwind/styles.css
D. Official starters #
/buildawesome-one/starter
/buildawesome-one/examples
/getgrav/grav-theme-quark2
/getgrav/grav-plugin-devtools
Starter HTML template #
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link rel="stylesheet" href="css/blades.standalone.css" />
<title>Hello world!</title>
</head>
<body>
<main class="container">
<h1>Hello world!</h1>
</main>
</body>
</html>