Skip to content

Commit

Permalink
docs: mention freelancer server
Browse files Browse the repository at this point in the history
  • Loading branch information
dd84ai committed Jan 25, 2025
1 parent 1517845 commit 5a31c83
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
7 changes: 6 additions & 1 deletion blog/freelancer_menu/freelancer_menu.templ
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,17 @@ templ FreelancerMenuT() {
<p>
Page dedicated to gathering links related to Freelancer (2003) game.
</p>
@Articles(articles.ArticleDiscoLinux,articles.ArticleFreelancerVanillaLinux, articles.ArticleFreelancerHDLinux, articles.ArticleAllShortestPaths)
@Articles(articles.ArticleDiscoLinux,
articles.ArticleFreelancerVanillaLinux,
articles.ArticleFreelancerHDLinux,
articles.ArticleAllShortestPaths,
)
@Tools(
pet_projects.ProjectDarkstat,
pet_projects.ProjectDarkbot,
pet_projects.ProjectDarklint,
pet_projects.ProjectConfigs,
pet_projects.ProjectServerVanilla,
)
<h1>Contacts</h1>
<a href={ templ.SafeURL(types.GetCtx(ctx).SiteRoot + urls.About + "#contacts" )}>see here</a>
Expand Down
8 changes: 7 additions & 1 deletion blog/pet_projects/pet_projects.templ
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ var ProjectBlog *PetProject = NewPetProject(
WithGithub(pet_projects_urls.Blog),
)

var ProjectServerVanilla *PetProject = NewPetProject(
"Dockerizer Freelancer Server",
"fl-server-vanilla",
WithGithub(pet_projects_urls.FlServerVanilla),
)

templ PetProjectsT() {
@common.Html5(common.HtmlOptions{
Title: "Pet projects",
Expand Down Expand Up @@ -256,7 +262,7 @@ templ PetProjectsT() {
The ORM provides static typed access to the data, the code is abe to distinguish int/str/float types.
The project is reused as library for fl-darklint and fl-darkstat. Also intended for applying to fl-darkmap future project.
}
}
}

<div style="display: flex; justify-content: center;">
<p>
Expand Down
13 changes: 7 additions & 6 deletions blog/pet_projects/pet_projects_urls/urls.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package pet_projects_urls

const (
Autogit = "https://github.com/darklab8/autogit"
Blog = "https://github.com/darklab8/blog"
GoTypelog = "https://github.com/darklab8/go-typelog"
PyTypelog = "https://github.com/darklab8/py-typelog"
Infra = "https://github.com/darklab8/infra"
Argocue = "https://github.com/darklab8/argocd-cue"
Autogit = "https://github.com/darklab8/autogit"
Blog = "https://github.com/darklab8/blog"
GoTypelog = "https://github.com/darklab8/go-typelog"
PyTypelog = "https://github.com/darklab8/py-typelog"
Infra = "https://github.com/darklab8/infra"
Argocue = "https://github.com/darklab8/argocd-cue"
FlServerVanilla = "https://github.com/darklab8/fl-server-vanilla"
)

0 comments on commit 5a31c83

Please sign in to comment.