new: Complete modules related to home page, archive page and article page

This commit is contained in:
yv1ing
2024-12-16 14:13:58 +08:00
parent 08a3d4c8b5
commit c8fd4e9f2b
49 changed files with 1547 additions and 1 deletions

9
utils/number.go Normal file
View File

@@ -0,0 +1,9 @@
package utils
func Min(a, b int) int {
if a <= b {
return a
} else {
return b
}
}