diff --git a/site/css/main.scss b/site/css/main.scss index d7ea160..2095973 100644 --- a/site/css/main.scss +++ b/site/css/main.scss @@ -101,7 +101,7 @@ article { .article-title { margin-top: 20px; margin-bottom: 0; - font-size: 2rem; + font-size: 1.8rem; > a { color: var(--content-text-color); @@ -131,6 +131,9 @@ article { h1, h2, h3, h4, h5, h6 { font-family: $sansSerif; } + + h1 { font-size: 1.8rem; } + h2 { font-size: 1.6rem; } } } diff --git a/site/tutorial-series.html.ejs b/site/tutorial-series.html.ejs index c126715..62e4593 100644 --- a/site/tutorial-series.html.ejs +++ b/site/tutorial-series.html.ejs @@ -10,9 +10,7 @@ metadata.layout = "default.html.ejs"; <% for (const tutorial of tutorials) { %>
-

- <%- fancyLink(tutorial.metadata.title, tutorial.metadata.permalink) %> -

+

<%= tutorial.metadata.title %>

<%- include("includes/article-meta.html.ejs", { metadata: tutorial.metadata }) %>
<% } %> diff --git a/site/tutorials.html.ejs b/site/tutorials.html.ejs index 9d5cfc5..089f095 100644 --- a/site/tutorials.html.ejs +++ b/site/tutorials.html.ejs @@ -5,9 +5,7 @@ metadata.layout = "default.html.ejs"
<% for (const series of allSeries) { %>
-

- <%- fancyLink(series.index.metadata.title, series.index.metadata.permalink) %> -

+

<%= series.index.metadata.title %>