Skip to content

Commit

Permalink
added links page and button
Browse files Browse the repository at this point in the history
  • Loading branch information
WinsDominoes committed May 6, 2024
1 parent b646819 commit df76fbe
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
13 changes: 13 additions & 0 deletions css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,16 @@ details[open] summary {
border-radius: 20px;
transition: background-color 0.3s;
}

.linksButton {
display: inline-block;
padding: 30px 100px;
text-align: center;
text-decoration: none;
font-size: 2rem;
background: linear-gradient(rgb(245, 169, 184) 20%, rgb(245, 61, 107) 100%);
color: white;
border: 0;
border-radius: 20px;
transition: background-color 0.3s;
}
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ <h2>Hi! I'm Amy / Atius</h2>
<a href="faq">
<button class="faqButton">FAQ</button>
</a>
<a href="links">
<button class="linksButton">FAQ</button>
</a>
</div>
</div>
</div>
Expand Down
19 changes: 19 additions & 0 deletions links.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
layout: default
redirect_from:
- /archive/
- /archive
- /archive/1/
- /archive/1
---

<nav class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Newer</a>
{% endif %}

{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Older</a>
{% endif %}
</nav>

0 comments on commit df76fbe

Please sign in to comment.