Skip to content

Commit

Permalink
fix slides
Browse files Browse the repository at this point in the history
  • Loading branch information
TrebledJ committed Aug 13, 2024
1 parent 7915a66 commit a3b6a33
Show file tree
Hide file tree
Showing 18 changed files with 62 additions and 40 deletions.
20 changes: 19 additions & 1 deletion content/pages/slides.njk
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
---
redirect:
to: /slides/from-input-to-injection/
---

{% include "./slides/2024-08-14-from-input-to-injection.html" %}
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Redirecting&hellip;</title>
<link rel="canonical" href="{{ redirect.to | url }}">
<script>
location = "{{ redirect.to | url }}"
</script>
<meta http-equiv="refresh" content="0; url={{ redirect.to | url }}">
<meta name="robots" content="noindex">
</head>
<body>
<h1>Redirecting&hellip;</h1>
<a href="{{ redirect.to | url }}">Click here if you are not redirected.</a>
</body>
</html>

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion eleventy.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ module.exports = function (eleventyConfig) {
'./content/**/assets/*.mp4': '/img',
'./assets/webfonts': '/webfonts',
'./assets/css/**/*.{css,map}': '/css',
'./content/pages/slides/assets': '/img/slides',
});
eleventyConfig.addPassthroughCopy({
'./assets/js/**/*.js': '/js/',
Expand All @@ -45,6 +44,11 @@ module.exports = function (eleventyConfig) {
});
},
});
eleventyConfig.addPassthroughCopy({
'./content/pages/slides': '/slides',
}, {
filter: ['**/*', '!**/*.html', '!**/*.js'],
})

// Run Eleventy when these files change:
// https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets
Expand Down

0 comments on commit a3b6a33

Please sign in to comment.