diff --git a/gulpfile.js b/gulpfile.js index 6ad8ffe..f7bd871 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -19,6 +19,8 @@ gulp.task('dist-assets', function (done) { .pipe(gulp.dest('./dev/js')); gulp.src('./src/img/**.*') .pipe(gulp.dest('./dev/img')); + gulp.src('./src/fonts/**.*') + .pipe(gulp.dest('./dev/fonts')); done(); }); diff --git a/package.json b/package.json index 03e260a..29c7913 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "11straps", - "version": "0.3.0", + "version": "0.4.0", "description": "simple 11ty and Bootstrap5 boilerplate", "license": "MIT", "private": "true", diff --git a/src/_includes/layouts/code.njk b/src/_includes/layouts/code.njk deleted file mode 100644 index bd0032f..0000000 --- a/src/_includes/layouts/code.njk +++ /dev/null @@ -1,39 +0,0 @@ - - - - - {% include 'snippets/head.njk' %} - - - - - {% include 'snippets/navbar.njk' %} - -
-
-
-
-

{{ title }}

- -
-

- {{ description }} -

-

-
- {{ content | safe }} -
-
- {{ content | safe}} -
-
-
-
- - - - - - diff --git a/src/_includes/snippets/head.njk b/src/_includes/snippets/head.njk index 4a2e8c2..4e6ae07 100644 --- a/src/_includes/snippets/head.njk +++ b/src/_includes/snippets/head.njk @@ -9,3 +9,45 @@ + diff --git a/src/_includes/snippets/maincontent.njk b/src/_includes/snippets/maincontent.njk index a5c3edb..67eb856 100644 --- a/src/_includes/snippets/maincontent.njk +++ b/src/_includes/snippets/maincontent.njk @@ -1,4 +1,4 @@
-

{{ title }}

+

{{ title }}

{{ content | safe }} diff --git a/src/_includes/snippets/postloop.njk b/src/_includes/snippets/postloop.njk index 369f298..d08d812 100644 --- a/src/_includes/snippets/postloop.njk +++ b/src/_includes/snippets/postloop.njk @@ -19,7 +19,7 @@ -
+
diff --git a/src/fonts/inter-v12-latin-300.woff b/src/fonts/inter-v12-latin-300.woff new file mode 100644 index 0000000..f3fe81e Binary files /dev/null and b/src/fonts/inter-v12-latin-300.woff differ diff --git a/src/fonts/inter-v12-latin-300.woff2 b/src/fonts/inter-v12-latin-300.woff2 new file mode 100644 index 0000000..e085aa8 Binary files /dev/null and b/src/fonts/inter-v12-latin-300.woff2 differ diff --git a/src/fonts/inter-v12-latin-500.woff b/src/fonts/inter-v12-latin-500.woff new file mode 100644 index 0000000..19c7bf8 Binary files /dev/null and b/src/fonts/inter-v12-latin-500.woff differ diff --git a/src/fonts/inter-v12-latin-500.woff2 b/src/fonts/inter-v12-latin-500.woff2 new file mode 100644 index 0000000..6fc94ad Binary files /dev/null and b/src/fonts/inter-v12-latin-500.woff2 differ diff --git a/src/fonts/inter-v12-latin-700.woff b/src/fonts/inter-v12-latin-700.woff new file mode 100644 index 0000000..097e23e Binary files /dev/null and b/src/fonts/inter-v12-latin-700.woff differ diff --git a/src/fonts/inter-v12-latin-700.woff2 b/src/fonts/inter-v12-latin-700.woff2 new file mode 100644 index 0000000..8fcc432 Binary files /dev/null and b/src/fonts/inter-v12-latin-700.woff2 differ diff --git a/src/fonts/inter-v12-latin-regular.woff b/src/fonts/inter-v12-latin-regular.woff new file mode 100644 index 0000000..1866261 Binary files /dev/null and b/src/fonts/inter-v12-latin-regular.woff differ diff --git a/src/fonts/inter-v12-latin-regular.woff2 b/src/fonts/inter-v12-latin-regular.woff2 new file mode 100644 index 0000000..c659f5e Binary files /dev/null and b/src/fonts/inter-v12-latin-regular.woff2 differ diff --git a/src/index.njk b/src/index.njk index 6e7b043..c0c0225 100644 --- a/src/index.njk +++ b/src/index.njk @@ -5,7 +5,7 @@ layout: layouts/blank.njk
-

+

Welcome to the 11straps demo website! diff --git a/src/pricing.njk b/src/pricing.njk deleted file mode 100644 index 36452b6..0000000 --- a/src/pricing.njk +++ /dev/null @@ -1,59 +0,0 @@ ---- -layout: layouts/code.njk -title: Pricing 1 -description: Simple pricing table. Inspired by the vercel.com pricing page ---- -
-
-
    -
  • - - - - - - HTTPS-enabled - Custom Domains
  • -
  • - - - - - - Continuous Deployment - with Git
  • -
  • - - - - - - High-performance - Edge Network
  • -
  • - - - - - - Unlimited - Websites & APIs
  • -
  • - - - - - - Serverless Functions - in Node.js, Go, and more
  • -
-
-
-
-

- $5/mo

- Start for free -

No credit card required

-
-
-
diff --git a/src/scss/themes/base/_variables-theme.scss b/src/scss/themes/base/_variables-theme.scss index b8a5e4c..2f6bebe 100644 --- a/src/scss/themes/base/_variables-theme.scss +++ b/src/scss/themes/base/_variables-theme.scss @@ -1,3 +1,4 @@ //This is an example of how you can change BS5 variables. Just add the changed variables here and they will overwrite the defaults. // We changed the default font and the default $blue color (which is set as $primary as well) $blue: #1717e5; +$font-family-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;