Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
temporary fix for User Manual links
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Jun 25, 2024
1 parent 43a75b9 commit c6a51df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies {
implementation("org.commonmark:commonmark:0.22.0")

testImplementation("org.seleniumhq.selenium:selenium-java:4.9.1")

tt
testImplementation(platform("org.junit:junit-bom:5.9.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fun Component.developersPage() {
private fun Component.devLinks() {
div { div ->
div.classes("buttons")
iconButton("User Manual", "https://docs.freenet.org/", arrayOf("fas", "fa-book"))
iconButton("User Manual", "https://freenet.github.io/freenet-core/", arrayOf("fas", "fa-book"))
iconButton("Github", "https://github.com/freenet/freenet-core", arrayOf("fab", "fa-github"))
iconButton("Crates.io", "https://crates.io/crates/locutus", arrayOf("fa-brands", "fa-rust"))
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/freenet/website/pages/homePage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private fun Component.learnMoreLinks() {
// User Manual
iconButton(
html = "Read User Manual",
href = "https://docs.freenet.org/",
href = "https://freenet.github.io/freenet-core/",
icon = arrayOf("fas", "fa-book"),
buttonClasses = arrayOf("button", "is-medium-teal")
)
Expand Down

0 comments on commit c6a51df

Please sign in to comment.