diff --git a/content/projects/_index.md b/content/projects/_index.md index 4d80eed..43abb65 100644 --- a/content/projects/_index.md +++ b/content/projects/_index.md @@ -31,6 +31,8 @@ win7sim,https://github.com/b1ek/win7-sim,NONE,false # The List ### 1. blek! File 🌠 +[Project page](/projects/file) + It is supposed to be a file sharing platform, like [`0x0.st`](https://0x0.st), but with a funny GUI & extended functionality. My instance is running [here](https://file.blek.codes). Check the [git repo](https://git.blek.codes/blek/bfile) for other instances. diff --git a/content/projects/file.md b/content/projects/file.md new file mode 100644 index 0000000..1aead24 --- /dev/null +++ b/content/projects/file.md @@ -0,0 +1,24 @@ ++++ +template = 'custom/project.html' + +title = 'blek! File' +description = 'A minute file sharing service' +date = '2024-08-01' +slug = 'file' +year = 2024 +month = 1 +day = 8 +lang = 'en' + +[extra] +git_repo = 'git.blek.codes/blek/bfile.git' +demo_url = 'file.blek.codes' +author = 'b1ek ' +license = 'GPL-3.0-only' ++++ + +It is supposed to be a file sharing platform, like [`0x0.st`](https://0x0.st), but with a funny GUI & extended functionality. + +Here's a screenshot if you don't want to open up the link: + +ui screenshot \ No newline at end of file diff --git a/static/content/file_ui.webp b/static/content/file_ui.webp new file mode 100644 index 0000000..484b57c Binary files /dev/null and b/static/content/file_ui.webp differ diff --git a/templates/custom/project.html b/templates/custom/project.html new file mode 100644 index 0000000..54453f7 --- /dev/null +++ b/templates/custom/project.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} + +{% block content %} + +

{{ page.title }}

+ + +
+

Project summary

+ +
+ +
+ {{ page.content | safe }} +
+ +{% endblock content %} \ No newline at end of file