var result = null;
window.location.search.substr(1).split('&').forEach(function(element, index) {
if (element.indexOf(paramName) >= 0) {
result = element.split('=')[1];
}
});
return result;
.action_block:first-of-type {
border-top: 0;
padding-top: 5px;
}
text-shadow: -1px -1px 0px #ffffff;
.menu {}
.menu a {}
.menu a:hover {}
var products = [
{"id": "1", "name": "Имя1"},
{"id": "2", "name": "Имя2"},
{"id": "3", "name": "Имя3"}
];
var html = '<table>';
var cnt = 0;
for(var i in products) {
if(cnt == 0) {
html += '<tr>';
}
html += '<td>'+products[i]['id']+'</td>' + '<td>'+products[i]['name']+'</td>';
cnt++;
if(cnt == 2) {
cnt = 0;
html += '</tr>';
}
}
if(cnt != 0) {
html += '<td></td><td></td></tr>';
}
html +='</table>';
parents()
, т.е. наследуете шаблон при помощи extends и потом в теле блока наследуете родительские методы: {% block meta %} parents() {% endblock %}
<html>
<head>
<base href="/" />
...
</head>
....
</html>