[help] [img] [forum]
[Catalog] · [Search] [News]
[Return] []
Posting mode: Reply
Post reply
Name
Email
Subject
Message
CAPTCHA CAPTCHA Challenge Click to refresh.
File
Password For post deletion.
Submit  
  • Helpful information is available in the visitor guide. Currently 28 unique user posts.
  • Supported file types are JPG, PNG and GIF.
  • Maximum file size allowed is 2MB.
  • Images greater than 250x250 will be thumbnailed.
  • Supported BBCode tags are b, code, i, pre, sjis, spoiler, s and u.

for the home page or index, is there a way to customize it like to add an short introduction to the website? it seems to me like not, but a simple way of implementing this to me is to have an "extra" template appended to the home page to add custom html without messing with its whole template, btw it'd be nice to have a logo to the home page too for that extra glamor


Upload a banner and enable the "Pages" option to display it in the site index.

Edit extra_header.gohtml or extra_footer.gohtml to add HTML only when rendering the "index" template:

1
2
3
{{if eq .Template "index"}}
<b>This HTML will only be displayed in the site index page.</b>
{{end}}


[]