In stackexchange, every question has a footer
"Know someone who can answer? Share a link to this question via email, twitter, facebook, or linkedin"
Of course, since askbot has support for more including Google Plus now, encouraging users to share questions and answers is important for anyone using askbot. Typically successful sites have large majority of traffic (70 to 80%) that come from search engines and one of the sure shot way of increasing popularity is encouraging people to link to your site. So in addition to the facebook, twitter sharing links on the site of the questions, this is helpful
If you are just browsing a site. this footer is instead
"Not the answer you're looking for? Browse other questions tagged foo or ask your own question."
This is useful in encouraging a tag based search which often yields better answers
Not sure if it's kosher to just copy the code verbatim, but this seems to work:
{% if answers %}
...
{% else %}
<h2 class="share-question">{% trans url=settings.APP_URL+question.get_absolute_url()|iriencode, name=settings.APP_SHORT_NAME|iriencode %}Know someone who can answer? Share a <a href="{{ url }}">link</a> to this question via
<a href="mailto:?subject={{ name }}&body={{ url }}">email</a>,
<a href="http://twitter.com/share?url={{ url }}">Twitter</a>,
<a href="http://www.facebook.com/sharer.php?u={{ url }}">Facebook</a>, or
<a href="http://www.linkedin.com/shareArticle?mini=true&url={{ url }}&source={{ name }}">Linkedin</a>.{% endtrans %}
</h2>
{% endif %}
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2011-07-28 17:43:49 -0500
Seen: 88 times
Last updated: Jul 28 '11
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.