Compare commits

...

10 Commits

27 changed files with 651 additions and 420 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
docker-compose.yml
compose.yml
content content
website website

View File

@ -1,15 +1,17 @@
FROM golang:1.21.4 FROM golang:1.22.5
WORKDIR /app WORKDIR /app
COPY *.go ./ COPY *.go ./
COPY *.mod ./ COPY *.mod ./
COPY *.sum ./ COPY *.sum ./
COPY lib ./lib
COPY routes ./routes COPY log ./log
COPY public ./public COPY lib ./lib
COPY routes ./routes
COPY public ./public
COPY templates ./templates COPY templates ./templates
RUN go build . RUN go build .
ENTRYPOINT ["/app/website"] ENTRYPOINT ["/app/website"]

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
all: website
website: */*.go *.go
go build -o $@
format:
gofmt -s -w .
update:
go get -u
go mod tidy
.PHONY: format update

View File

@ -1,18 +1,33 @@
# website | MatterLinux Website # website | MatterLinux website
Soruce code of Matterlinux's offical website, which is Soruce code of Matterlinux's offical website, which is
located at [matterlinux.xyz](https://matterlinux.xyz) located at [matterlinux.xyz](https://matterlinux.xyz)
### Deployment ### Deployment
Web server can be built and deployed with docker: Web server can be built and deployed with docker compose using the following
configuration file:
```yaml
version: "3"
services:
website:
image: matterwebsite
restart: unless-stopped
build:
context: ./
ports:
- "127.0.0.1:9878:9878"
volumes:
- "./content:/app/content"
``` ```
docker build --tag matterwebsite . After saving the configuration file, you can build and run the docker container:
```bash
docker-compose up -d docker-compose up -d
``` ```
### Managing Content ### Managing content
Website content can be managed by editing JSON and markdown files Website content can be managed by editing JSON and markdown files
under the `content` direcotry. under the `content` direcotry.
Matterlinux's website content directory can be found in the MatterLinux's website content directory can be found in the
[content](https://git.matterlinux.xyz/Matter/content) [content](https://git.matterlinux.xyz/Matter/content)
repository. repository.

View File

@ -1,10 +0,0 @@
version: "3"
services:
website:
image: matterwebsite
restart: unless-stopped
ports:
- "127.0.0.1:9878:9878"
volumes:
- "./content:/app/content"

17
go.mod
View File

@ -1,26 +1,27 @@
module git.matterlinux.xyz/Matter/website module git.matterlinux.xyz/Matter/website
go 1.21.4 go 1.22.5
require ( require (
github.com/gofiber/fiber/v2 v2.52.4 github.com/bigkevmcd/go-configparser v0.0.0-20240808124832-fc81059ea0bd
github.com/gofiber/template/html/v2 v2.1.1 github.com/gofiber/fiber/v2 v2.52.5
github.com/gofiber/template/html/v2 v2.1.2
github.com/gorilla/feeds v1.2.0
github.com/russross/blackfriday/v2 v2.1.0 github.com/russross/blackfriday/v2 v2.1.0
) )
require ( require (
github.com/andybalholm/brotli v1.1.0 // indirect github.com/andybalholm/brotli v1.1.0 // indirect
github.com/bigkevmcd/go-configparser v0.0.0-20230427073640-c6b631f70126 // indirect
github.com/gofiber/template v1.8.3 // indirect github.com/gofiber/template v1.8.3 // indirect
github.com/gofiber/utils v1.1.0 // indirect github.com/gofiber/utils v1.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect github.com/google/uuid v1.6.0 // indirect
github.com/klauspost/compress v1.17.8 // indirect github.com/klauspost/compress v1.17.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/rivo/uniseg v0.4.7 // indirect github.com/rivo/uniseg v0.4.7 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.52.0 // indirect github.com/valyala/fasthttp v1.55.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.19.0 // indirect golang.org/x/sys v0.24.0 // indirect
) )

64
go.sum
View File

@ -1,56 +1,56 @@
github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI=
github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY= github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
github.com/bigkevmcd/go-configparser v0.0.0-20230427073640-c6b631f70126 h1:uru++pUKoS/yYU3Ohq9VItZdK/cT7FFJH/UUjOlxc+s= github.com/bigkevmcd/go-configparser v0.0.0-20240808124832-fc81059ea0bd h1:MsTk4yo6KVYdulsDscuH4AwiZN1CyuCJAg59EWE7HPQ=
github.com/bigkevmcd/go-configparser v0.0.0-20230427073640-c6b631f70126/go.mod h1:zqqfbfnDeSdRs1WihmMjSbhb2Ptw8Jbus831xoqiIec= github.com/bigkevmcd/go-configparser v0.0.0-20240808124832-fc81059ea0bd/go.mod h1:vzEQfW+A1T+AMJmTIX+SXNLNECHOM7GEinHhw0IjykI=
github.com/gofiber/fiber/v2 v2.51.0 h1:JNACcZy5e2tGApWB2QrRpenTWn0fq0hkFm6k0C86gKQ= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/gofiber/fiber/v2 v2.51.0/go.mod h1:xaQRZQJGqnKOQnbQw+ltvku3/h8QxvNi8o6JiJ7Ll0U= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/gofiber/fiber/v2 v2.52.4 h1:P+T+4iK7VaqUsq2PALYEfBBo6bJZ4q3FP8cZ84EggTM= github.com/gofiber/fiber/v2 v2.52.5 h1:tWoP1MJQjGEe4GB5TUGOi7P2E0ZMMRx5ZTG4rT+yGMo=
github.com/gofiber/fiber/v2 v2.52.4/go.mod h1:KEOE+cXMhXG0zHc9d8+E38hoX+ZN7bhOtgeF2oT6jrQ= github.com/gofiber/fiber/v2 v2.52.5/go.mod h1:KEOE+cXMhXG0zHc9d8+E38hoX+ZN7bhOtgeF2oT6jrQ=
github.com/gofiber/template v1.8.2 h1:PIv9s/7Uq6m+Fm2MDNd20pAFFKt5wWs7ZBd8iV9pWwk=
github.com/gofiber/template v1.8.2/go.mod h1:bs/2n0pSNPOkRa5VJ8zTIvedcI/lEYxzV3+YPXdBvq8=
github.com/gofiber/template v1.8.3 h1:hzHdvMwMo/T2kouz2pPCA0zGiLCeMnoGsQZBTSYgZxc= github.com/gofiber/template v1.8.3 h1:hzHdvMwMo/T2kouz2pPCA0zGiLCeMnoGsQZBTSYgZxc=
github.com/gofiber/template v1.8.3/go.mod h1:bs/2n0pSNPOkRa5VJ8zTIvedcI/lEYxzV3+YPXdBvq8= github.com/gofiber/template v1.8.3/go.mod h1:bs/2n0pSNPOkRa5VJ8zTIvedcI/lEYxzV3+YPXdBvq8=
github.com/gofiber/template/html/v2 v2.0.5 h1:BKLJ6Qr940NjntbGmpO3zVa4nFNGDCi/IfUiDB9OC20= github.com/gofiber/template/html/v2 v2.1.2 h1:wkK/mYJ3nIhongTkG3t0QgV4ADdgOYJYVSAF2AHnh8Y=
github.com/gofiber/template/html/v2 v2.0.5/go.mod h1:RCF14eLeQDCSUPp0IGc2wbSSDv6yt+V54XB/+Unz+LM= github.com/gofiber/template/html/v2 v2.1.2/go.mod h1:E98Z/FzvpaSib06aWEgYk6GXNf3ctoyaJH8yW5ay5ak=
github.com/gofiber/template/html/v2 v2.1.1 h1:QEy3O3EBkvwDthy5bXVGUseOyO6ldJoiDxlF4+MJiV8=
github.com/gofiber/template/html/v2 v2.1.1/go.mod h1:2G0GHHOUx70C1LDncoBpe4T6maQbNa4x1CVNFW0wju0=
github.com/gofiber/utils v1.1.0 h1:vdEBpn7AzIUJRhe+CiTOJdUcTg4Q9RK+pEa0KPbLdrM= github.com/gofiber/utils v1.1.0 h1:vdEBpn7AzIUJRhe+CiTOJdUcTg4Q9RK+pEa0KPbLdrM=
github.com/gofiber/utils v1.1.0/go.mod h1:poZpsnhBykfnY1Mc0KeEa6mSHrS3dV0+oBWyeQmb2e0= github.com/gofiber/utils v1.1.0/go.mod h1:poZpsnhBykfnY1Mc0KeEa6mSHrS3dV0+oBWyeQmb2e0=
github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4=
github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4= github.com/gorilla/feeds v1.2.0 h1:O6pBiXJ5JHhPvqy53NsjKOThq+dNFm8+DFrxBEdzSCc=
github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= github.com/gorilla/feeds v1.2.0/go.mod h1:WMib8uJP3BbY+X8Szd1rA5Pzhdfh+HCCAYT2z7Fza6Y=
github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA=
github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U= github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis=
github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
github.com/valyala/fasthttp v1.51.0 h1:8b30A5JlZ6C7AS81RsWjYMQmrZG6feChmgAolCl1SqA= github.com/valyala/fasthttp v1.55.0 h1:Zkefzgt6a7+bVKHnu/YaYSOPfNYNisSVBo/unVCf8k8=
github.com/valyala/fasthttp v1.51.0/go.mod h1:oI2XroL+lI7vdXyYoQk03bXBThfFl2cVdIA3Xl7cH8g= github.com/valyala/fasthttp v1.55.0/go.mod h1:NkY9JtkrpPKmgwV3HTaS2HWaJss9RSIsRVfcxxoHiOM=
github.com/valyala/fasthttp v1.52.0 h1:wqBQpxH71XW0e2g+Og4dzQM8pk34aFYlA1Ga8db7gU0=
github.com/valyala/fasthttp v1.52.0/go.mod h1:hf5C4QnVMkNXMspnsUlfM3WitlgYflyhHYoKol/szxQ=
github.com/valyala/tcplisten v1.0.0 h1:rBHj/Xf+E1tRGZyWIWwJDiRY0zc1Js+CV5DqwacVSA8= github.com/valyala/tcplisten v1.0.0 h1:rBHj/Xf+E1tRGZyWIWwJDiRY0zc1Js+CV5DqwacVSA8=
github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg=
golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

View File

@ -11,86 +11,86 @@ import (
const CONTENT_PATH string = "content" const CONTENT_PATH string = "content"
type Content struct{ type Content struct {
Dir string Dir string
Name string Name string
Title string `json:"title"` Title string `json:"title"`
ID string `json:"id"` ID string `json:"id"`
Md string Md string
HTML template.HTML HTML template.HTML
Date string `json:"date"` Date string `json:"date"`
Author string `json:"author"` Author string `json:"author"`
} }
func ListContent(dir string) ([]Content, error) { func ListContent(dir string) ([]Content, error) {
var res []Content var res []Content
dirpath := path.Join(CONTENT_PATH, dir) dirpath := path.Join(CONTENT_PATH, dir)
entries, err := os.ReadDir(dirpath) entries, err := os.ReadDir(dirpath)
if err != nil { if err != nil {
return nil, errors.New("Cannot readdir: "+dirpath) return nil, errors.New("Cannot readdir: " + dirpath)
} }
for _, e := range entries { for _, e := range entries {
if e.IsDir() { if e.IsDir() {
subres, err := ListContent(path.Join(dir, e.Name())) subres, err := ListContent(path.Join(dir, e.Name()))
if err != nil { if err != nil {
return res, err return res, err
} }
res = append(res, subres...) res = append(res, subres...)
} }
if(!strings.HasSuffix(e.Name(), ".json")) { if !strings.HasSuffix(e.Name(), ".json") {
continue continue
} }
var con Content var con Content
jsonfile := path.Join(dirpath, e.Name()) jsonfile := path.Join(dirpath, e.Name())
jsoncon, err := os.ReadFile(jsonfile) jsoncon, err := os.ReadFile(jsonfile)
if err != nil { if err != nil {
return nil, errors.New("Cannot get JSON: "+jsonfile) return nil, errors.New("Cannot get JSON: " + jsonfile)
} }
err = json.Unmarshal(jsoncon, &con) err = json.Unmarshal(jsoncon, &con)
if err != nil { if err != nil {
return nil, errors.New("Cannot parse JSON: "+jsonfile) return nil, errors.New("Cannot parse JSON: " + jsonfile)
} }
con.Dir = dir con.Dir = dir
con.Name = strings.Split(e.Name(), ".")[0] con.Name = strings.Split(e.Name(), ".")[0]
res = append(res, con) res = append(res, con)
} }
return res, nil return res, nil
} }
func GetContent(dir string, name string) (Content, error) { func GetContent(dir string, name string) (Content, error) {
var res Content var res Content
jsonfile := path.Join(CONTENT_PATH, dir, name+".json") jsonfile := path.Join(CONTENT_PATH, dir, name+".json")
mdfile := path.Join(CONTENT_PATH, dir, name+".md") mdfile := path.Join(CONTENT_PATH, dir, name+".md")
res.Dir = dir res.Dir = dir
res.Name = name res.Name = name
jsoncontent, err := os.ReadFile(jsonfile) jsoncontent, err := os.ReadFile(jsonfile)
if err != nil { if err != nil {
return res, errors.New("Cannot read JSON file: "+jsonfile) return res, errors.New("Cannot read JSON file: " + jsonfile)
} }
rawcontent, err := os.ReadFile(mdfile) rawcontent, err := os.ReadFile(mdfile)
if err != nil { if err != nil {
return res, errors.New("Cannot read markdown file: "+mdfile) return res, errors.New("Cannot read markdown file: " + mdfile)
} }
if(json.Unmarshal(jsoncontent, &res)!= nil) { if json.Unmarshal(jsoncontent, &res) != nil {
return res, errors.New("Cannot parse JSON: "+jsonfile) return res, errors.New("Cannot parse JSON: " + jsonfile)
} }
res.Md = string(rawcontent) res.Md = string(rawcontent)
res.HTML = template.HTML(ParseMarkdown(res.Md)) res.HTML = template.HTML(ParseMarkdown(res.Md))
return res, nil return res, nil
} }

View File

@ -12,44 +12,44 @@ import (
// python3 -c "import string; print(string.ascii_letters+string.digits+\" /,_-?!'\\\"\")" // python3 -c "import string; print(string.ascii_letters+string.digits+\" /,_-?!'\\\"\")"
var valid string = `abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 /,_-?!'"` var valid string = `abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 /,_-?!'"`
func IsStringValid(s string) bool{ func IsStringValid(s string) bool {
for _, c := range s { for _, c := range s {
if !strings.Contains(valid, string(c)){ if !strings.Contains(valid, string(c)) {
fmt.Printf("%c\n", c) fmt.Printf("%c\n", c)
return false return false
} }
} }
return true return true
} }
func RenderError(c *fiber.Ctx, code int) error{ func RenderError(c *fiber.Ctx, code int) error {
var msg string = "Server Error" var msg string = "Server Error"
c.Status(code) c.Status(code)
switch code { switch code {
case 404: case 404:
msg = "Not Found" msg = "Not Found"
} }
return c.Render("error", fiber.Map{ return c.Render("error", fiber.Map{
"msg": msg, "msg": msg,
}) })
} }
func TimeFromString(date string) (time.Time, error) { func TimeFromString(date string) (time.Time, error) {
res, err := time.Parse("02/01/06", date) res, err := time.Parse("02/01/06", date)
if err == nil { if err == nil {
return res, nil return res, nil
} }
return time.Now(), nil return time.Now(), nil
} }
func ParseMarkdown(md string) string { func ParseMarkdown(md string) string {
ext := blackfriday.FencedCode ext := blackfriday.FencedCode
ext |= blackfriday.BackslashLineBreak ext |= blackfriday.BackslashLineBreak
ext |= blackfriday.Strikethrough ext |= blackfriday.Strikethrough
ext |= blackfriday.Tables ext |= blackfriday.Tables
ext |= blackfriday.NoEmptyLineBeforeBlock ext |= blackfriday.NoEmptyLineBeforeBlock
return string(blackfriday.Run([]byte(md), blackfriday.WithExtensions(ext))) return string(blackfriday.Run([]byte(md), blackfriday.WithExtensions(ext)))
} }

23
log/log.go Normal file
View File

@ -0,0 +1,23 @@
package log
import (
"fmt"
"time"
)
func Log(p string, f string, args ...interface{}) {
now := time.Now()
nstr := now.Format("[02/01/06 15:04:05]")
fmt.Printf("%s -%s- ", nstr, p)
fmt.Printf(f, args...)
fmt.Println()
}
func Info(f string, args ...interface{}) {
Log("INFO", f, args...)
}
func Error(f string, args ...interface{}) {
Log("ERROR", f, args...)
}

60
main.go
View File

@ -1,6 +1,6 @@
/* /*
* website | MatterLinux Official Website * website | MatterLinux website
* MatterLinux 2023-2024 (https://matterlinux.xyz) * MatterLinux 2023-2024 (https://matterlinux.xyz)
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
@ -21,44 +21,46 @@
package main package main
import ( import (
"log"
"git.matterlinux.xyz/Matter/website/lib" "git.matterlinux.xyz/Matter/website/lib"
"git.matterlinux.xyz/Matter/website/log"
"git.matterlinux.xyz/Matter/website/routes" "git.matterlinux.xyz/Matter/website/routes"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
"github.com/gofiber/template/html/v2" "github.com/gofiber/template/html/v2"
) )
func main(){ func main() {
log.SetFlags(log.Lshortfile | log.Ltime) var err error
engine := html.New("./templates", ".html") engine := html.New("./templates", ".html")
app := fiber.New(fiber.Config{ app := fiber.New(fiber.Config{
DisableStartupMessage: true, DisableStartupMessage: true,
Views: engine, Views: engine,
}) })
app.Static("/", "./public") app.Static("/", "./public")
app.Static("/assets", "./content/assets") app.Static("/assets", "./content/assets")
app.Get("/", routes.IndexRoute) app.Get("/", routes.GET_Index)
app.Get("/download", routes.DownloadRoute) app.Get("/download", routes.GET_Download)
app.Get("/news", routes.NewsRoute) app.Get("/news", routes.GET_News)
app.Get("/news/:id", routes.PostRoute) app.Get("/news/feed.atom", routes.GET_NewsFeed)
app.Get("/news/feed.rss", routes.GET_NewsFeed)
app.Get("/wiki", routes.WikiMainRoute) app.Get("/news/feed.json", routes.GET_NewsFeed)
app.Get("/wiki/:id", routes.WikiRoute) app.Get("/news/:id", routes.GET_New)
app.Get("/hub", routes.ConfigsRoute) app.Get("/wiki", routes.GET_Wiki)
app.Get("/hub/:id", routes.ConfigRoute) app.Get("/wiki/:id", routes.GET_WikiPage)
app.Get("*", func(c *fiber.Ctx) error { app.Get("/hub", routes.GET_Configs)
return lib.RenderError(c, 404) app.Get("/hub/:name", routes.GET_Config)
})
log.Println("Starting MatterLinux Website on port 9878") app.Get("*", func(c *fiber.Ctx) error {
err := app.Listen(":9878") return lib.RenderError(c, 404)
if err != nil { })
log.Fatalf("Error starting server: %s", err)
} log.Info("Starting MatterLinux website on port 9878")
if err = app.Listen(":9878"); err != nil {
log.Error("Error starting server: %s", err.Error())
}
} }

View File

@ -11,27 +11,34 @@
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
background: var(--dark-second); background: var(--dark-second);
border: solid 1px var(--bright-main); border: solid 1px var(--bright-second);
padding: 10px; padding: 10px;
} }
.downloads { .downloads {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
gap: 5px; gap: 8px;
}
.downloads a:first-child {
border-right: solid 1px var(--bright-third);
padding-right: 8px;
} }
.entry h1 { .entry h1 {
color: var(--bright-main); color: var(--bright-main);
font-weight: 900;
font-size: 20px; font-size: 20px;
} }
.entry a, .entry p { .entry a {
color: var(--bright-main); color: var(--bright-second);
font-size: 20px;
text-decoration: none; text-decoration: none;
font-weight: 100;
font-size: 20px;
} }
.entry a:hover { .entry a:hover {
color: var(--bright-second); text-decoration: underline;
} }

View File

@ -43,7 +43,7 @@
.md p { .md p {
font-size: 18px; font-size: 18px;
color: var(--bright-second); color: var(--bright-second);
line-height: 24px; line-height: 26px;
letter-spacing: .01em; letter-spacing: .01em;
margin-top: 10px; margin-top: 10px;
} }

View File

@ -1,7 +1,7 @@
main { main {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding-top: 50px; padding-top: 40px;
gap: 10px; gap: 10px;
} }
@ -11,6 +11,42 @@ main {
} }
} }
.feed-menu {
display: flex;
justify-content: center;
flex-direction: row;
align-items: center;
margin-bottom: 6px;
color: white;
gap: 10px;
}
.feed-menu p {
color: var(--bright-main);
border-right: solid 1px var(--bright-third);
padding-right: 8px;
font-weight: 900;
font-size: 17px;
}
.feed-menu .feeds {
display: flex;
flex-direction: row;
align-items: center;
gap: 6px;
}
.feed-menu .feeds a {
font-weight: 100;
font-size: 16px;
color: var(--bright-second);
text-decoration: none;
}
.feed-menu .feeds a:hover {
text-decoration: underline;
}
.small { .small {
display: flex; display: flex;
flex-direction: row; flex-direction: row;

View File

@ -1,5 +1,17 @@
.subtext { .subtext {
display: flex;
flex-direction: row;
align-items: center;
margin: 12px 0 15px 0;
gap: 8px;
}
.subtext p {
font-size: 18px; font-size: 18px;
color: var(--bright-main); color: var(--bright-main);
margin: 5px 0 15px 0; }
.subtext p:first-child {
border-right: solid 1px var(--bright-third);
padding-right: 8px;
} }

View File

@ -4,123 +4,145 @@ import (
"bytes" "bytes"
"encoding/json" "encoding/json"
"fmt" "fmt"
"log"
"os" "os"
"path" "path"
"strings" "strings"
"git.matterlinux.xyz/Matter/website/lib" "git.matterlinux.xyz/Matter/website/lib"
"git.matterlinux.xyz/Matter/website/log"
"github.com/bigkevmcd/go-configparser" "github.com/bigkevmcd/go-configparser"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
) )
type Config struct { type Config struct {
Redirect string `json:"redirect"` Redirect string `json:"redirect"`
Image string `json:"image"` Image string `json:"image"`
Url string `json:"url"` Url string `json:"url"`
Name string Name string
Desc string Desc string
Author string Author string
Keywords string Keywords string
} }
func LoadConfig(c *Config) (error) { func (c *Config) Load() error {
agent := fiber.Get(c.Url) agent := fiber.Get(c.Url)
code, body, errs := agent.Bytes() code, body, errs := agent.Bytes()
if len(errs) > 0 { if len(errs) > 0 {
return fmt.Errorf("request to %s failed", c.Url) return fmt.Errorf("request to %s failed", c.Url)
} }
if code != 200 { if code != 200 {
return fmt.Errorf("bad response from %s", c.Url) return fmt.Errorf("bad response from %s", c.Url)
} }
parser := configparser.New() parser := configparser.New()
err := parser.ParseReader(bytes.NewReader(body)) err := parser.ParseReader(bytes.NewReader(body))
if err != nil { if err != nil {
return fmt.Errorf("failed to parse %s: %s", c.Url, err.Error()) return fmt.Errorf("failed to parse %s: %s", c.Url, err.Error())
} }
name, err := parser.Get("details", "name") name, err := parser.Get("details", "name")
if err != nil { if err != nil {
return fmt.Errorf("failed get details/name: %s", c.Url) return fmt.Errorf("failed get details/name: %s", c.Url)
} }
keywords, err := parser.Get("details", "keywords")
if err != nil {
return fmt.Errorf("failed get details/keywords: %s", c.Url)
}
author, err := parser.Get("details", "author") keywords, err := parser.Get("details", "keywords")
if err != nil { if err != nil {
return fmt.Errorf("failed get details/keywords: %s", c.Url) return fmt.Errorf("failed get details/keywords: %s", c.Url)
} }
desc, err := parser.Get("details", "desc")
c.Name = name author, err := parser.Get("details", "author")
c.Desc = desc if err != nil {
c.Author = author return fmt.Errorf("failed get details/keywords: %s", c.Url)
c.Keywords = strings.ReplaceAll(keywords, ",", ", ") }
if(!lib.IsStringValid(c.Name) || desc, err := parser.Get("details", "desc")
!lib.IsStringValid(c.Desc) ||
!lib.IsStringValid(c.Author) ||
!lib.IsStringValid(c.Keywords)){
return fmt.Errorf("keywords or name contain illegal chars: %s", c.Url)
}
return nil c.Name = name
c.Desc = desc
c.Author = author
c.Keywords = strings.ReplaceAll(keywords, ",", ", ")
if !lib.IsStringValid(c.Name) ||
!lib.IsStringValid(c.Desc) ||
!lib.IsStringValid(c.Author) ||
!lib.IsStringValid(c.Keywords) {
return fmt.Errorf("keywords or name contain illegal chars: %s", c.Url)
}
return nil
} }
func GetConfigs() ([]Config, error) { func GetConfigs() ([]Config, error) {
var data map[string][]Config var data map[string][]Config
configs_path := path.Join(lib.CONTENT_PATH, "configs.json") configs_path := path.Join(lib.CONTENT_PATH, "configs.json")
raw, err := os.ReadFile(configs_path) raw, err := os.ReadFile(configs_path)
if err != nil { if err != nil {
return nil, err return nil, err
} }
err = json.Unmarshal(raw, &data) err = json.Unmarshal(raw, &data)
if err != nil { if err != nil {
return nil, err return nil, err
} }
if _, ok := data["list"]; !ok { if _, ok := data["list"]; !ok {
return nil, fmt.Errorf("json data does not contain the list key") return nil, fmt.Errorf("json data does not contain the list key")
} }
for i := range data["list"] { for i := range data["list"] {
err = LoadConfig(&data["list"][i]) if err = data["list"][i].Load(); err != nil {
if err != nil { return nil, err
return nil, err }
} }
}
return data["list"], nil return data["list"], nil
} }
func ConfigsRoute(c *fiber.Ctx) error{ func GET_Configs(c *fiber.Ctx) error {
con, err := lib.GetContent("", "configs") var (
if err != nil { err error
log.Printf("GetContent failed: %s", err.Error()) con lib.Content
return lib.RenderError(c, 500) configs []Config
} )
configs, err := GetConfigs() if con, err = lib.GetContent("", "configs"); err != nil {
if err != nil { log.Error("GetContent failed: %s", err.Error())
log.Printf("GetConfigs failed: %s", err.Error()) return lib.RenderError(c, 500)
return lib.RenderError(c, 500) }
}
if configs, err = GetConfigs(); err != nil {
return c.Render("configs", fiber.Map{ log.Error("GetConfigs failed: %s", err.Error())
"content": con, return lib.RenderError(c, 500)
"list": configs, }
})
return c.Render("configs", fiber.Map{
"content": con,
"list": configs,
})
} }
func ConfigRoute(c *fiber.Ctx) error{ func GET_Config(c *fiber.Ctx) error {
return c.Redirect("/configs") var (
err error
name string
configs []Config
)
name = c.Params("name")
if configs, err = GetConfigs(); err != nil {
log.Error("GetConfigs failed: %s", err.Error())
return lib.RenderError(c, 500)
}
for _, cur := range configs {
if cur.Name == name || cur.Name+".git" == name {
return c.Status(301).Redirect(cur.Redirect)
}
}
return lib.RenderError(c, 404)
} }

View File

@ -1,20 +1,23 @@
package routes package routes
import ( import (
"log"
"git.matterlinux.xyz/Matter/website/lib" "git.matterlinux.xyz/Matter/website/lib"
"git.matterlinux.xyz/Matter/website/log"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
) )
func DownloadRoute(c *fiber.Ctx) error{ func GET_Download(c *fiber.Ctx) error {
con, err := lib.GetContent("", "download") var (
if err != nil { con lib.Content
log.Printf("GetContent failed: %s", err.Error()) err error
return lib.RenderError(c, 500) )
}
return c.Render("download", fiber.Map{ if con, err = lib.GetContent("", "download"); err != nil {
"content": con, log.Error("GetContent failed: %s", err.Error())
}) return lib.RenderError(c, 500)
}
return c.Render("download", fiber.Map{
"content": con,
})
} }

View File

@ -1,20 +1,23 @@
package routes package routes
import ( import (
"log"
"git.matterlinux.xyz/Matter/website/lib" "git.matterlinux.xyz/Matter/website/lib"
"git.matterlinux.xyz/Matter/website/log"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
) )
func IndexRoute(c *fiber.Ctx) error{ func GET_Index(c *fiber.Ctx) error {
con, err := lib.GetContent("", "index") var (
if err != nil { err error
log.Printf("GetContent failed: %s", err.Error()) con lib.Content
return lib.RenderError(c, 500) )
}
return c.Render("index", fiber.Map{ if con, err = lib.GetContent("", "index"); err != nil {
"readme": con, log.Error("GetContent failed: %s", err.Error())
}) return lib.RenderError(c, 500)
}
return c.Render("index", fiber.Map{
"readme": con,
})
} }

View File

@ -1,69 +1,163 @@
package routes package routes
import ( import (
"log" "fmt"
"path"
"sort" "sort"
"time"
"git.matterlinux.xyz/Matter/website/lib" "git.matterlinux.xyz/Matter/website/lib"
"git.matterlinux.xyz/Matter/website/log"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
"github.com/gorilla/feeds"
) )
func NewsRoute(c *fiber.Ctx) error { func GetContent() ([]lib.Content, error) {
contents, err := lib.ListContent("news") var (
if err != nil { contents []lib.Content
log.Printf("ListContent failed: %s", err.Error()) err error
return lib.RenderError(c, 500) )
}
sort.Slice(contents, func(i, j int) bool { if contents, err = lib.ListContent("news"); err != nil {
time1, err := lib.TimeFromString(contents[i].Date) return nil, err
if err != nil { }
log.Printf("Bad date while sorting: %s", err.Error())
return false
}
time2, err := lib.TimeFromString(contents[j].Date) sort.Slice(contents, func(i, j int) bool {
if err != nil { time1, err := lib.TimeFromString(contents[i].Date)
log.Printf("Bad date while sorting: %s", err.Error()) if err != nil {
return false log.Error("Bad date while sorting: %s", err.Error())
} return false
}
return time1.After(time2)
})
return c.Render("news", fiber.Map{ time2, err := lib.TimeFromString(contents[j].Date)
"news": contents, if err != nil {
}) log.Error("Bad date while sorting: %s", err.Error())
return false
}
return time1.After(time2)
})
return contents, nil
} }
func PostRoute(c *fiber.Ctx) error { func GET_News(c *fiber.Ctx) error {
postid := c.Params("id") contents, err := GetContent()
if len(postid) == 0 {
return lib.RenderError(c, 404)
}
contents, err := lib.ListContent("news") if err != nil {
if err != nil { log.Error("GetContent failed: %s", err.Error())
log.Printf("ListContent failed: %s", err.Error()) return lib.RenderError(c, 500)
return lib.RenderError(c, 500) }
}
for _, con := range contents { return c.Render("news", fiber.Map{
if(con.ID != postid) { "news": contents,
continue })
} }
con, err = lib.GetContent(con.Dir, con.Name) func GET_New(c *fiber.Ctx) error {
if err != nil { postid := c.Params("id")
log.Printf("ListContent failed: %s", err.Error()) if len(postid) == 0 {
return lib.RenderError(c, 500) return lib.RenderError(c, 404)
} }
return c.Render("post", fiber.Map{ contents, err := lib.ListContent("news")
"title": con.Title, if err != nil {
"post": con, log.Error("ListContent failed: %s", err.Error())
}) return lib.RenderError(c, 500)
} }
return lib.RenderError(c, 404) for _, con := range contents {
if con.ID != postid {
continue
}
con, err = lib.GetContent(con.Dir, con.Name)
if err != nil {
log.Error("ListContent failed: %s", err.Error())
return lib.RenderError(c, 500)
}
return c.Render("post", fiber.Map{
"title": con.Title,
"post": con,
})
}
return lib.RenderError(c, 404)
}
func GET_NewsFeed(c *fiber.Ctx) error {
var (
feed_type string
feed *feeds.Feed
contents []lib.Content
res string
err error
)
feed_type = path.Base(c.Path())
if contents, err = GetContent(); err != nil {
log.Error("GetContent failed: %s", err.Error())
return lib.RenderError(c, 500)
}
feed = &feeds.Feed{
Title: "MatterLinux | News",
Link: &feeds.Link{Href: "https://matterlinux.xyz/news"}, // lets hardcode this for now
Description: "News regarding the MatterLinux project",
Created: time.Now(),
}
feed.Items = []*feeds.Item{}
for _, con := range contents {
parsed, err := time.Parse("02/01/06", con.Date)
if err != nil {
log.Error("Failed to parse post time (%s): %s", con.ID, err.Error())
return lib.RenderError(c, 500)
}
feed.Items = append(feed.Items, &feeds.Item{
Id: con.ID,
Title: con.Title,
Link: &feeds.Link{Href: fmt.Sprintf("https://matterlinux.xyz/news/%s", con.ID)},
Author: &feeds.Author{Name: con.Author},
Created: parsed,
Content: con.Md,
})
}
switch feed_type {
case "feed.atom":
if res, err = feed.ToAtom(); err != nil {
log.Error("Failed to convert feed to atom: %s", err.Error())
return lib.RenderError(c, 500)
}
c.Set("Content-Type", "application/atom+xml")
return c.Send([]byte(res))
case "feed.rss":
if res, err = feed.ToRss(); err != nil {
log.Error("Failed to convert feed to RSS: %s", err.Error())
return lib.RenderError(c, 500)
}
c.Set("Content-Type", "application/rss+xml")
return c.Send([]byte(res))
case "feed.json":
if res, err = feed.ToJSON(); err != nil {
log.Error("Failed to convert feed to JSON: %s", err.Error())
return lib.RenderError(c, 500)
}
c.Set("Content-Type", "application/feed+json")
return c.Send([]byte(res))
}
log.Error("Cannot handle the feed type: %s", feed_type)
return lib.RenderError(c, 404)
} }

View File

@ -1,54 +1,62 @@
package routes package routes
import ( import (
"log"
"git.matterlinux.xyz/Matter/website/lib" "git.matterlinux.xyz/Matter/website/lib"
"git.matterlinux.xyz/Matter/website/log"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
) )
func WikiMainRoute(c *fiber.Ctx) error { func GET_Wiki(c *fiber.Ctx) error {
con, err := lib.GetContent("wiki", "main") var (
if err != nil { con lib.Content
log.Printf("GetContent failed: %s", err.Error()) err error
return lib.RenderError(c, 500) )
}
return c.Render("post", fiber.Map{ if con, err = lib.GetContent("wiki", "main"); err != nil {
"title": "Wiki", log.Error("GetContent failed: %s", err.Error())
"post": con, return lib.RenderError(c, 500)
}) }
return c.Render("post", fiber.Map{
"title": "Wiki",
"post": con,
})
} }
func WikiRoute(c *fiber.Ctx) error{ func GET_WikiPage(c *fiber.Ctx) error {
docid := c.Params("id") var (
if len(docid) == 0 { contents []lib.Content
return lib.RenderError(c, 404) err error
} )
contents, err := lib.ListContent("wiki") docid := c.Params("id")
if err != nil { if len(docid) == 0 {
log.Printf("ListContent failed: %s", err.Error()) return lib.RenderError(c, 404)
return lib.RenderError(c, 500) }
}
for _, con := range contents { if contents, err = lib.ListContent("wiki"); err != nil {
if(con.ID != docid) { log.Error("ListContent failed: %s", err.Error())
continue return lib.RenderError(c, 500)
} }
con, err = lib.GetContent(con.Dir, con.Name) for _, con := range contents {
if err != nil { if con.ID != docid {
log.Printf("GetContent failed: %s", err.Error()) continue
return lib.RenderError(c, 500) }
}
con.Title = "Wiki: "+con.Title con, err = lib.GetContent(con.Dir, con.Name)
return c.Render("post", fiber.Map{ if err != nil {
"title": con.Title, log.Error("GetContent failed: %s", err.Error())
"post": con, return lib.RenderError(c, 500)
}) }
}
return lib.RenderError(c, 404) con.Title = "Wiki: " + con.Title
return c.Render("post", fiber.Map{
"title": con.Title,
"post": con,
})
}
return lib.RenderError(c, 404)
} }

View File

@ -2,9 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>MatterLinux | Configs</title> <title>MatterLinux | Configs</title>
<meta charset="UTF-8"> {{template "parts/head" .}}
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">
<link href="/configs.css" rel="stylesheet"> <link href="/configs.css" rel="stylesheet">
<link href="/md.css" rel="stylesheet"> <link href="/md.css" rel="stylesheet">
</head> </head>
@ -45,7 +43,7 @@
Run the following to install this Run the following to install this
confiugraiton: confiugraiton:
</p> </p>
<pre>$ mc-pull {{.Name}}</pre> <pre>$ confer pull {{.Name}}</pre>
</div> </div>
</div> </div>
{{end}} {{end}}

View File

@ -2,9 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>MatterLinux | Download</title> <title>MatterLinux | Download</title>
<meta charset="UTF-8"> {{template "parts/head" .}}
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">
<link href="/download.css" rel="stylesheet"> <link href="/download.css" rel="stylesheet">
<link href="/md.css" rel="stylesheet"> <link href="/md.css" rel="stylesheet">
</head> </head>
@ -12,27 +10,21 @@
{{template "parts/bar" .}} {{template "parts/bar" .}}
<main> <main>
<div class="md"> <div class="md">
<h1>Download MatterLinux</h1> <h1>Download MatterLinux {{.content.ID}}</h1>
</div> </div>
<div class="list"> <div class="list">
<div class="entry"> <div class="entry">
<h1>Version</h1> <h1>Archive</h1>
<h1>{{.content.ID}}</h1>
</div>
<div class="entry">
<h1>Release Archive</h1>
<div class="downloads"> <div class="downloads">
<a href="https://rel.matterlinux.xyz/{{.contentTitle}}/matterlinux_{{.content.ID}}.tar.gz">Download</a> <a href="https://rel.matterlinux.xyz/{{.content.Title}}/matterlinux_{{.content.ID}}.tar.gz">Download</a>
<p>|</p> <a href="https://rel.matterlinux.xyz/{{.content.Title}}/matterlinux_{{.content.ID}}.tar.gz.sig">Signature</a>
<a href="https://rel.matterlinux.xyz/{{.contentTitle}}/matterlinux_{{.content.ID}}.tar.gz.sig">Signature</a>
</div> </div>
</div> </div>
<div class="entry"> <div class="entry">
<h1>Release ISO</h1> <h1>ISO</h1>
<div class="downloads"> <div class="downloads">
<a href="https://rel.matterlinux.xyz/{{.contentTitle}}/matterlinux_{{.content.ID}}.iso">Download</a> <a href="https://rel.matterlinux.xyz/{{.content.Title}}/matterlinux_{{.content.ID}}.iso">Download</a>
<p>|</p> <a href="https://rel.matterlinux.xyz/{{.content.Title}}/matterlinux_{{.content.ID}}.iso.sig">Signature</a>
<a href="https://rel.matterlinux.xyz/{{.contentTitle}}/matterlinux_{{.content.ID}}.iso.sig">Signature</a>
</div> </div>
</div> </div>
</div> </div>

View File

@ -2,13 +2,11 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>MatterLinux | Error</title> <title>MatterLinux | Error</title>
<meta charset="UTF-8"> {{template "parts/head" .}}
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">
<link href="/error.css" rel="stylesheet"> <link href="/error.css" rel="stylesheet">
</head> </head>
<body> <body>
<div class="error"> <div class="error">
<h1>{{.msg}}</h1> <h1>{{.msg}}</h1>
<a href="/">Go Back to Home</a> <a href="/">Go Back to Home</a>
</div> </div>

View File

@ -2,9 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>MatterLinux</title> <title>MatterLinux</title>
<meta charset="UTF-8"> {{template "parts/head" .}}
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">
<link href="/md.css" rel="stylesheet"> <link href="/md.css" rel="stylesheet">
<link href="/index.css" rel="stylesheet"> <link href="/index.css" rel="stylesheet">
</head> </head>

View File

@ -2,14 +2,22 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>MatterLinux | News</title> <title>MatterLinux | News</title>
<meta charset="UTF-8"> {{template "parts/head" .}}
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">
<link href="/news.css" rel="stylesheet"> <link href="/news.css" rel="stylesheet">
<link rel="alternate" type="application/atom+xml" href="/news/feed.atom" title="Atom Feed">
<link rel="alternate" type="application/rss+xml" href="/news/feed.rss" title="RSS Feed">
</head> </head>
<body> <body>
{{template "parts/bar" .}} {{template "parts/bar" .}}
<main> <main>
<div class="feed-menu">
<p>Feeds</p>
<div class="feeds">
<a href="/news/feed.atom">Atom</a>
<a href="/news/feed.rss">RSS</a>
<a href="/news/feed.json">JSON</a>
</div>
</div>
{{range .news}} {{range .news}}
<a href="/news/{{.ID}}" class="small"> <a href="/news/{{.ID}}" class="small">
<h1>{{.Date}}</h1> <h1>{{.Date}}</h1>

View File

@ -0,0 +1,3 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">

View File

@ -2,9 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>MatterLinux | {{.title}}</title> <title>MatterLinux | {{.title}}</title>
<meta charset="UTF-8"> {{template "parts/head" .}}
<meta name="viewport" content="width=1200">
<link href="/global.css" rel="stylesheet">
<link href="/post.css" rel="stylesheet"> <link href="/post.css" rel="stylesheet">
<link href="/md.css" rel="stylesheet"> <link href="/md.css" rel="stylesheet">
</head> </head>
@ -14,7 +12,10 @@
<div class="md"> <div class="md">
<h1>{{.post.Title}}</h1> <h1>{{.post.Title}}</h1>
</div> </div>
<p class="subtext">{{.post.Date}} | by {{.post.Author}}</p> <div class="subtext">
<p class="date">{{.post.Date}}</p>
<p class="author">by {{.post.Author}}</p>
</div>
<div class="md"> <div class="md">
{{.post.HTML}} {{.post.HTML}}
</div> </div>