mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-08 23:03:03 -08:00
59a3e6a27b
* Update de-de.markdown * Update help.markdown * Update faq.html * Update 2012-10-28-is-greenshort-really-portable.markdown * Update 2018-03-24-how-can-i-turn-off-logging.markdown * Update 2013-04-16-what-is-the-best-way-to-control-greenshots-configuration-at-install-time.markdown * Create 2020-04-17-how-can-i-open-an-image-file-in-greenshot.markdown * Create 2020-04-18-are-there-any-command-line-options-available.markdown * Create 2020-04-19-how-can-a-screenshot-be-passed-to-another-software.markdown
34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
---
|
|
layout: page
|
|
title: FAQ
|
|
menu: FAQ
|
|
permalink: /faq/
|
|
categories: []
|
|
comments: []
|
|
tags: []
|
|
---
|
|
|
|
<div class="row">
|
|
{% assign sorted_faqs = site.faqs | sort:"sort_id" %}
|
|
|
|
<div class="col-md-6 col-md-offset-3">
|
|
Got a question? Many people do, so there a good chances to find the answer below. Edit this page under <a href="https://github.com/greenshot/greenshot/tree/gh-pages/_faqs">Github</a>.
|
|
<div id="user_accordion" class="panel-group">
|
|
{% for faq in sorted_faqs %}
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading btn btn-block" data-toggle="collapse" data-target="#faq_body_{{ forloop.index }}">
|
|
<h2 class="panel-title"><a href="{{faq.url}}" >{{ faq.title }}<span class="glyphicon glyphicon-chevron-down pull-right"/></a></h2>
|
|
</div>
|
|
<div id="faq_body_{{ forloop.index }}" class="panel-collapse collapse">
|
|
<div class="panel-body ">
|
|
{{ faq.content | markdownify | strip_html | truncatewords:20 }}
|
|
<a href="{{faq.url}}" >read more</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|