We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c906e7 commit 3708fdfCopy full SHA for 3708fdf
_includes/questions.html
@@ -1,5 +1,11 @@
1
+{% if page.answers_tag %}
2
+{% assign askbot_tag = page.answers_tag %}
3
+{% else %}
4
+{% assign askbot_tag = page.title | downcase %}
5
+{% endif %}
6
+
7
<section class="questions post-content">
- <h3>Questions tagged with `<kbd>{{ page.title | downcase }}</kbd>`</h3>
8
+ <h3>Questions tagged with `<kbd>{{ askbot_tag }}</kbd>`</h3>
9
<div id='result' class="question"></div>
10
</section>
11
@@ -19,7 +25,7 @@ <h3>Questions tagged with `<kbd>{{ page.title | downcase }}</kbd>`</h3>
19
25
})();
20
26
jQuery(function() {
21
27
jQuery.getFeed({
22
- url: 'http://answers.ros.org/feeds/rss/?tags={{ page.title | downcase }}',
28
+ url: 'http://answers.ros.org/feeds/rss/?tags={{ askbot_tag }}',
23
29
success: function(feed) {
24
30
31
jQuery('#result').append('<h2>'
0 commit comments