Showcase your Flarum!
A work in progress ?
MineFIL.club
A club for FIL miner.
Shahiem Wow, I really like the look of this one! Good stuff mate and don't forgot to show us a finished and live copy.
Prosperous Thank you ? I'll definitely show it, but have to finish a couple of extensions first.
- Edited
Very much a work in progress. Only opened it up to a couple of users to test while I style.
Using CSS filters to style the header above the hero (Currently blur and grey scale), plan to do random images up there from user submitted photos.
Using google fonts for a few of the headings and links, along with rounded corners on some buttons.
Using a hero image which I'm going to add a bit of custom CSS to to style and maybe randomise as well.
Loving the software so far!
Noticed Flarum being used by 99stack.com, a VPS provider that I'm considering. They accept multiple cryptocurrencies (a plus for me)
- Edited
Shahiem I think this project will be on hold for a bit. I have an other idea to make, an interactive role play Harry Potter forum (I'm big Harry Potter fan :-)).
I hope this will work out, see some previews below from what I had in mind. (for now) I'll post asap a preview of how it looks with Flarum.
(A work in progress)
2018, my Flarum forum is still up.
Offers: Forum, Screen Connect Remote Access, Nextcloud file hosting, Rocket-chat communication, dark theme with custom css modifications.
Join and profit.
- Edited
https://whatsonyourscrubs.com - Nothing to fancy yet. I plan on playing around with it and trying different looks. I have an idea for a logo and will figure out a background. This is through siteground.com. It was way easier than I thought it was going to be to setup through them.
Let me know what you all think so far.
Thanks
2/14/18 Made some cosmetic changes and added some extensions. If you check it out, let me know what you think.
@Frink No need to make another post about your site when it was only mentioned five posts ago. ?
Prosperous Sorry, just hoping to get a few more visitors stopping by!
I installed a small forum for testing yesterday, Im really impressed with flarum so far, feel free to post anything there.
clanpyr.com/foro
- Edited
Migrated from blogger to https://www.m4apt.com ? please feel free to have fun with the puzzles and math.
- Edited
Hmm now how to fix that?
Update:
Adding this to my nginx config helped.
location / {
try_files $uri $uri/ /index.php?$query_string;}
error_page 418 = @index;
# deny all direct access for these folders
location ~* /(\.git|cache|bin|logs|backup|tests)/.*$ { return 418; }
location ~ /(LICENSE\.txt|composer\.lock|composer\.json|nginx\.conf|web\.config|htaccess\.txt|\.htaccess) { return 418; }
location = /robots.txt { access_log drops; log_not_found off; }
location = /favicon.ico { access_log drops; log_not_found off; }
location ~ /\. { access_log denied; log_not_found off; deny all; }
location ~ ~$ { access_log denied; log_not_found off; deny all; }
....
.....
}
Reference:
getgrav/grav1625