Skip to content

Commit

Permalink
Merge pull request #964 from oalders/hugo
Browse files Browse the repository at this point in the history
Fix hugo build warnings
  • Loading branch information
oalders-mm authored Oct 30, 2024
2 parents dca9df1 + 5ed5fbb commit 3328892
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion assets/scss/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
}

.search__button {
@include mixins.menu-button;
float: right;
@include mixins.menu-button;
}

.search__button svg {
Expand Down
28 changes: 14 additions & 14 deletions assets/scss/index.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
@import 'article';
@import 'base';
@import 'blog-post';
@import 'header';
@import 'footer';
@import 'fourohfour';
@import 'list';
@import 'loading';
@import 'mixins';
@import 'pagination';
@import 'pre';
@import 'search';
@import 'variables';
@import 'recaptcha';
@use 'article';
@use 'base';
@use 'blog-post';
@use 'header';
@use 'footer';
@use 'fourohfour';
@use 'list';
@use 'loading';
@use 'mixins';
@use 'pagination';
@use 'pre';
@use 'search';
@use 'variables';
@use 'recaptcha';

:root {
--mm-color-active-blue: #2b7ec6;
Expand Down
6 changes: 4 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
baseurl = "/"
languageCode = 'en-us'
title = 'MaxMind'
paginate = 6
rssLimit = 6

[outputs]
home = ['HTML', 'JSON', 'RSS']
home = ['HTML', 'RSS']
page = ['HTML']

[pagination]
pagerSize = 6

[taxonomies]
category = 'category'
tag = 'tag'
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

{{ $style := resources.Get "scss/index.scss" }}
{{ $options := dict "transpiler" "dartsass" }}
{{ $style := $style | resources.ToCSS $options}}
{{ $style := $style | css.Sass $options}}

<link rel="stylesheet" type="text/css" href="{{ $style.RelPermalink }}">

Expand Down

0 comments on commit 3328892

Please sign in to comment.