Skip to content

Commit

Permalink
Actually more appealing titles
Browse files Browse the repository at this point in the history
  • Loading branch information
NotFenixio committed May 1, 2024
1 parent 05927f2 commit 3767af1
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 14 deletions.
2 changes: 1 addition & 1 deletion _layouts/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
<a href="{{ item.link | relative_url }}" {% if page.url == item.link %}class="current"{% endif %}>{{ item.name }}</a>
{% endfor %}
</nav>
<h1 class="font-[Poppins] text-2xl text-center font-bold bg-gradient-to-r from-indigo-300 via-indigo-700 to-blue-400">{{ page.title }}</h1>
<h1 class="font-[Poppins] text-2xl text-center font-bold bg-gradient-to-r from-indigo-300 via-indigo-700 to-blue-400 text-transparent bg-clip-text">{{ page.title }}</h1>
</body>
</html>
17 changes: 15 additions & 2 deletions assets/css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,18 @@ body {
}

a {
@apply underline text-blue-600 hover:text-blue-800 visited:text-purple-600
}
text-decoration-line: underline;
color: rgb(37 99 235);
}

a:hover {
color: rgb(30 64 175);
}

a:visited {
color: rgb(147 51 234);
}

body {
padding: 5px;
}
19 changes: 9 additions & 10 deletions blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url | relative_url}}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</body>
</html>

<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url | relative_url}}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</html>
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
</head>
<body>
<img class="logo" src="https://avatars.githubusercontent.com/u/151100541?s=500"></img>
<h1 class="">We are SnarpleDev, a [ficticional] company building products like Voyager and Snazzle.</h1>
<h1 class="text-2xl">We are SnarpleDev, a [ficticional] company building products like Voyager and Snazzle.</h1>
</body>
</html>
1 change: 1 addition & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Empty tailwind config file for activating highlight

0 comments on commit 3767af1

Please sign in to comment.