Added community and showcase header
This commit is contained in:
parent
05cdd82c9b
commit
98cd036c72
|
@ -0,0 +1,28 @@
|
|||
_model: page
|
||||
---
|
||||
title: Community
|
||||
---
|
||||
body:
|
||||
|
||||
#### banner ####
|
||||
image: header.jpg
|
||||
#### text-block ####
|
||||
text:
|
||||
|
||||
Working with Lektor is more fun when you can ask questions to other users.
|
||||
Because the project is so new there are not that many channels for it yet.
|
||||
Here is where you can find other Lektor users:
|
||||
|
||||
* [Find us on Stack Overflow](http://stackoverflow.com/questions/tagged/lektor)
|
||||
* [Ask us a question on Stack Overflow](http://stackoverflow.com/questions/ask?tags=lektor)
|
||||
* [Chat with us on Gitter](gitter/)
|
||||
|
||||
Want to get in contact with us otherwise?
|
||||
|
||||
* [Reach us via Twitter at @getlektor](https://twitter.com/getlektor)
|
||||
|
||||
## Chat with Us
|
||||
|
||||
<iframe src="https://gitter.im/lektor/lektor/~embed" style="width: 100%; height: 500px; border: 1px solid #eee"></iframe>
|
||||
----
|
||||
class: default
|
Binary file not shown.
After Width: | Height: | Size: 236 KiB |
Binary file not shown.
After Width: | Height: | Size: 289 KiB |
|
@ -10,6 +10,10 @@ label = Documentation
|
|||
path = /showcase
|
||||
label = Showcase
|
||||
|
||||
[community]
|
||||
path = /community
|
||||
label = Community
|
||||
|
||||
[blog]
|
||||
path = /blog
|
||||
label = Blog
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block title %}Showcase{% endblock %}
|
||||
{% block outerbody %}
|
||||
{% set image = site.get('/showcase').attachments.images.first() %}
|
||||
{% if image %}
|
||||
<div class="page-banner page-banner-300" style="background-image: url({{ image|url }})"></div>
|
||||
{% endif %}
|
||||
{{ super() }}
|
||||
{% endblock %}
|
||||
{% block body %}
|
||||
<h1>Showcase</h1>
|
||||
<p>
|
||||
|
|
Loading…
Reference in New Issue