1
Fork 1

Bootstrap slidev

This commit is contained in:
Jake Howard 2024-04-19 11:31:54 +01:00
commit 63d0ecaca0
Signed by: jake
GPG key ID: 57AFB45680EDD477
7 changed files with 8492 additions and 0 deletions

132
.gitignore vendored Normal file
View file

@ -0,0 +1,132 @@
# ---> Node
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
.cache
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

1
README.md Normal file
View file

@ -0,0 +1 @@
# Empowering Django with Background Workers

8304
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

17
package.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "empowering-django-with-background-workers",
"type": "module",
"private": true,
"scripts": {
"build": "slidev build",
"start": "slidev",
"export": "slidev export"
},
"dependencies": {
"@iconify-json/logos": "^1.1.42",
"@iconify-json/mdi": "^1.1.66",
"@slidev/cli": "^0.48.8",
"@slidev/theme-default": "latest",
"vue": "^3.4.21"
}
}

10
setup/shiki.ts Normal file
View file

@ -0,0 +1,10 @@
import { defineShikiSetup } from '@slidev/types'
export default defineShikiSetup(() => {
return {
themes: {
dark: 'github-dark',
light: 'github-light',
},
}
})

25
slides.md Normal file
View file

@ -0,0 +1,25 @@
---
title: Empowering Django with Background Workers
class: text-center
highlighter: shiki
transition: slide-left
mdc: true
themeConfig:
primary: '#0c4b33'
---
# Empowering Django with Background Workers
### Jake Howard{style="color: #e85537;" }
<ul class="list-none! text-sm [&>li]:m-0! mt-1 uppercase">
<li>Senior Systems Engineer @ Torchbox <mdi-fire class="fill-white"/></li>
<li>Security & Performance @ Wagtail <logos-wagtail class="fill-white"/></li>
</ul>
<ul class="list-none! text-xs [&>li]:m-0! mt-3 font-light">
<li><mdi-earth /> theorangeone.net</li>
<li><mdi-twitter /> @RealOrangeOne</li>
<li><mdi-github /> @RealOrangeOne</li>
<li><mdi-mastodon /> @jake@theorangeone.net</li>
</ul>

3
style.css Normal file
View file

@ -0,0 +1,3 @@
.slidev-layout {
background: #0c4b33
}