Skip to content

Commit

Permalink
fix ssr link
Browse files Browse the repository at this point in the history
  • Loading branch information
moshe5745 committed Oct 10, 2024
1 parent 7e851e7 commit 03eab79
Show file tree
Hide file tree
Showing 10 changed files with 431 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

329 changes: 329 additions & 0 deletions .idea/other.xml

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions .idea/random_numbers.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 69 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/pages/htmx.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn htmx_page() {
class='inline-block p-4 border-b-2 border-transparent rounded-t-lg hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300'>HOME</a>
</li>
<li class='me-2'>
<a href='/'
<a href='/ssr'
class='inline-block p-4 border-b-2 border-transparent rounded-t-lg hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300'>SSR</a>
</li>
<li class='me-2'>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/spa.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn spa_page() {
<a href='/'
class='inline-block p-4 border-b-2 border-transparent rounded-t-lg hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300'>HOME</a>
</li>
<li class='me-2'><a href='/'
<li class='me-2'><a href='/ssr'
class='inline-block p-4 border-b-2 border-transparent rounded-t-lg hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300'>SSR</a>
</li>
<li class='me-2'><a href='/static'
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ssr.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub fn generate_html(
class='inline-block p-4 border-b-2 border-transparent rounded-t-lg hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300'>HOME</a>
</li>
<li class='me-2'>
<a href='/'
<a href='/ssr'
class='inline-block p-4 text-blue-600 border-b-2 border-blue-600 rounded-t-lg active dark:text-blue-500 dark:border-blue-500'
aria-current='page'>SSR</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/static.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn static_page() {
<a href='/'
class='inline-block p-4 border-b-2 border-transparent rounded-t-lg hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300'>HOME</a>
</li>
<li class='me-2'><a href='/'
<li class='me-2'><a href='/ssr'
class='inline-block p-4 border-b-2 border-transparent rounded-t-lg hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300'>SSR</a>
</li>
<li class='me-2'>
Expand Down

0 comments on commit 03eab79

Please sign in to comment.