armadillica / dillo

Free and open web platform created to support crowd-driven content.
https://dillo.space
79 stars 14 forks source link

The about page is very empty #226

Open L0Lock opened 1 year ago

L0Lock commented 1 year ago

There is the old issue #112 about this page, but it is closed and have been inactive for 4 years now. And it looks like changes like this one db43bc4c have not been applied or got reverted in some way (IMHO "give feedback" is still misleading and understood as being about Blender and not the website)? Anyway, I think the current About page could be enhanced

image

As of today, this page contains very little information useful to the user. Having two lines about the site is nice, but I would expect a few things:

  1. Keep the footer elements we already have on other pages (see red frame on screenshot) or better: make them even more prominent. IMHO this kind of pages is dedicated to such info, so it should not be relayed to a small footer.
  2. Maybe add more info about how to use the site globally. I'd find it convenient to have a guide for the supported markdown, and why not some global guidelines about how to post, what's globally accepted, mindset expected, ...
  3. Why not a mention Dillo's current version and release notes?
  4. Link to Blender Chat!

Mockup:

image

Code (click to extend) ```html

Welcome to Blender Community!

A Bit of History

In 2005 Pablo helped to build the GraphicAll community, and together with Francesco we have been building communities like Blender Network and Blender Today in 2014, which later became Blender Community.

 

The Platform

This website is built on Dillo, a free and open web platform created to support crowd-driven content.

Source Code, Bug Reports and Suggestions on Issues · armadillica/dillo · GitHub

Markdown Formatting

This website uses a simplified markdown formatting.

Element Markdown Syntax
Heading # H1 ## H2 ### H3
Bold **bold text**
Italic *italicized text*
Blockquote > blockquote
Ordered List 1. First item 2. Second item 3. Third item<br>
Unordered List - First item - Second item - Third item<br>
Code `code`
Horizontal Rule ---
Link [title](https://www.example.com)
Image ![alt text](image.jpg)

For Multiline Code, you can use triple ` :

            
            ```
            print("Hello, world!")
            for i in range(10):
                print(i)
            ```
            
        

```