Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyannn committed Dec 31, 2023
1 parent dbf1172 commit 9052238
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Docker Image CI

on: # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
push:
branches: ["master"]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Lint Code Base

on: # yamllint disable-line rule:truthy
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]
jobs:
run-lint:
runs-on: ubuntu-latest
Expand Down
Empty file modified local_build.sh
100644 → 100755
Empty file.
13 changes: 9 additions & 4 deletions zola/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{% extends "no-style-please/templates/base.html" %}
{% block css %}
<link rel="stylesheet" href="{{ get_url(path='style.css', trailing_slash=false) | safe }}"/>
<link rel="stylesheet" href="{{ get_url(path='custom.css', trailing_slash=false) | safe }}"/>
{% extends "no-style-please/templates/base.html" %} {% block css %}
<link
rel="stylesheet"
href="{{ get_url(path='style.css', trailing_slash=false) | safe }}"
/>
<link
rel="stylesheet"
href="{{ get_url(path='custom.css', trailing_slash=false) | safe }}"
/>
{% endblock css %}

0 comments on commit 9052238

Please sign in to comment.