Skip to content

Commit

Permalink
🐛 fix: add end-of-file newline
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Feb 6, 2023
1 parent 53d28ad commit 095b9d0
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion sass/parts/_cards.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@
.bloglist-table-row {
width: 100%;
}
}
}
2 changes: 1 addition & 1 deletion sass/parts/_code.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ pre code[class*="language-rs"]::before {
content: "rust";
background: #fff8f6;
color: #ff4647;
}
}
2 changes: 1 addition & 1 deletion sass/parts/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ footer {

[data-theme="light"] .social>img {
filter: invert(0);
}
}
2 changes: 1 addition & 1 deletion sass/parts/_home-banner.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@
#home-banner-text {
width: 95%;
}
}
}
2 changes: 1 addition & 1 deletion sass/parts/_image.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ figure h4::before {

svg {
max-height: 15px;
}
}
2 changes: 1 addition & 1 deletion sass/parts/_misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ a:hover {
margin: 0;
padding: 0;
}
}
}
2 changes: 1 addition & 1 deletion sass/parts/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ table th {
table td {
padding: 6px 13px;
border: 1px solid #dfe2e5;
}
}
2 changes: 1 addition & 1 deletion templates/403.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
{{ post_macros::page_header(title="403")}}
<span>forbidden</span>
</main>
{% endblock main_content %}
{% endblock main_content %}
2 changes: 1 addition & 1 deletion templates/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
{{ post_macros::page_header(title="404")}}
<span>not found</span>
</main>
{% endblock main_content %}
{% endblock main_content %}
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
{% include "partials/footer.html" %}
</body>

</html>
</html>
2 changes: 1 addition & 1 deletion templates/cards.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
{% endif %}
</div>
{% endif %}
{% endblock main_content %}
{% endblock main_content %}
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{% extends "section.html" %}
{% extends "section.html" %}
2 changes: 1 addition & 1 deletion templates/macros/macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,4 @@ <h1 class="page-title">All articles</h1>
</li>
{% endfor %}
</ul>
{% endmacro list_title %}
{% endmacro list_title %}
2 changes: 1 addition & 1 deletion templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

{% block main_content %}
{{ post_macros::content(page=page)}}
{% endblock main_content %}
{% endblock main_content %}
2 changes: 1 addition & 1 deletion templates/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
</nav>
</section>
<script src="{{ get_url(path='js/main.js', trailing_slash=false) | safe }}"/></script>
</footer>
</footer>
2 changes: 1 addition & 1 deletion templates/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@

<meta http-equiv="Content-Security-Policy"
content="default-src 'self' ws://127.0.0.1:1024/; img-src 'self' https://*; script-src 'self'; style-src 'self'; font-src 'self'" />
</head>
</head>
2 changes: 1 addition & 1 deletion templates/partials/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
{% endif %}

</nav>
</header>
</header>
2 changes: 1 addition & 1 deletion templates/section.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@
{% endif %}
</div>
{% endif %}
{% endblock main_content %}
{% endblock main_content %}
2 changes: 1 addition & 1 deletion templates/tags/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ <h1 class="page-title">Tags</h1>
</ul>
</div>

{% endblock main_content %}
{% endblock main_content %}
2 changes: 1 addition & 1 deletion templates/tags/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

{{ post_macros::list_title(pages=term.pages, tag_name=term.name) }}

{% endblock main_content %}
{% endblock main_content %}

0 comments on commit 095b9d0

Please sign in to comment.