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

Commit

Permalink
Github repo renamed from locutus to freenet-core
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Sep 15, 2023
1 parent ff872d6 commit 3696bf8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private fun Component.devLinks() {
div.classes("buttons")
iconButton("Core Concepts", "https://docs.freenet.org/components/overview.html", arrayOf("fas", "fa-sitemap"))
iconButton("Tutorial", "https://docs.freenet.org/tutorial.html", arrayOf("fab", "fa-readme"))
iconButton("Github", "https://github.com/freenet/locutus", arrayOf("fab", "fa-github"))
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/faq/faqPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import retrieveMDPage

fun Component.faqPage() {
val faqHtml =
retrieveMDPage("https://raw.githubusercontent.com/wiki/freenet/locutus/Frequently-Asked-Questions.md")
retrieveMDPage("https://raw.githubusercontent.com/wiki/freenet/freenet-core/Frequently-Asked-Questions.md")
val jsoupDoc = Jsoup.parse(faqHtml)
var faqNumber = 0
val headings = ArrayList<String>()
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 @@ -56,7 +56,7 @@ private fun Component.learnMoreLinks() {
// GitHub Repository
iconButton(
html = "Visit GitHub",
href = "https://github.com/freenet/locutus",
href = "https://github.com/freenet/freenet-core",
icon = arrayOf("fab", "fa-github"),
buttonClasses = arrayOf("button", "is-medium-orange")
)
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/freenet/website/pages/intro.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import retrieveMDPage
private val logger = KotlinLogging.logger { }

fun Component.intro() {
val introHtml = retrieveMDPage("https://raw.githubusercontent.com/wiki/freenet/locutus/Intro.md")
val introHtml = retrieveMDPage("https://raw.githubusercontent.com/wiki/freenet/freenet-core/Intro.md")

div().innerHTML(introHtml)
}
2 changes: 1 addition & 1 deletion src/main/kotlin/org/freenet/website/pages/latestNews.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ private val logger = KotlinLogging.logger { }


fun Component.latestNews() {
val latestNewsHtml = retrieveMDPage("https://raw.githubusercontent.com/wiki/freenet/locutus/News.md")
val latestNewsHtml = retrieveMDPage("https://raw.githubusercontent.com/wiki/freenet/freenet-core/News.md")
div().innerHTML(latestNewsHtml)
}

2 changes: 1 addition & 1 deletion src/main/kotlin/org/freenet/website/util/retrieveMDPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private val notFound = """
<div class="container has-text-centered">
<h1 class="title">Oops, our website is having some issues.</h1>
<p class="subtitle">Please
<a href="https://matrix.to/#/#freenet-locutus:matrix.org">let us know</a>
<a href="https://matrix.to/#/#freenet-freenet-core:matrix.org">let us know</a>
if you see this consistently.
</p>
</div>
Expand Down

0 comments on commit 3696bf8

Please sign in to comment.