.footer {
margin-top: 40px;
}
.wr:before {
content: "";
display: table;
}
On the index or home page, append #disqus_thread to the end of each article URL which appears inside the href tag for the article comments link
<footer class="topic-footer">
<ul class="list-unstyled list-inline small topic-info">
<li class="topic-info-author">
<a href="http://geekninja.ru/profile/romanstrukov/"><img src="http://geekninja.ru/uploads/images/00/00/35/2015/03/20/avatar_24x24.jpg?165946" alt="romanstrukov" class="avatar"></a>
<a rel="author" href="http://geekninja.ru/profile/romanstrukov/">Роман Струков</a>
</li>
<li class="topic-info-date">
<time datetime="2015-04-23T11:30:52+03:00" title="23 апреля 2015, 11:30" class="text-muted">
23.04.2015
</time>
</li>
<!-- Вот этот кусок для счётчика -->
<li class="topic-info-comment">
<a href="http://geekninja.ru/podcasts/227#disqus_thread" class="topic-comment"></a>
</li>
</ul>
</footer>
var start = ('кораблик плавал плавал и утонул').split(' ');
for (var i = 0, result = [], _result = {}, stroke; i <= start.length; i++) {
for (var j = 0; j < i; j++) {
stroke = start.slice(j, j + start.length - i + 1).join(' ');
if (!_result[stroke]) {
_result[stroke] = result.push(stroke);
}
}
}
console.log(result);
function getMonth (index, modify) {
var monthesRule = [
['(ь|й)', 'я'],
['т', 'та']
],
result = [
'Январь',
'Февраль',
'Март',
'Апрель',
'Май',
'Июнь',
'Июль',
'Август',
'Сентябрь',
'Октябрь',
'Ноябрь',
'Декабрь'
][index - 1];
if (modify) {
for (var i = 0, r; i < monthesRule.length; i++) {
r = new RegExp(monthesRule[i][0] + '$');
if (r.test(result)) {
return result.replace(r, monthesRule[i][1]);
}
}
}
return result;
}
console.log(getMonth(2));
console.log(getMonth(2, true));