Adding board name to title of catalog theme
This commit is contained in:
parent
0e7577f4ea
commit
a5c79ff638
@ -7,6 +7,7 @@
|
|||||||
var active_page = "catalog"
|
var active_page = "catalog"
|
||||||
, board_name = "{{ board }}";
|
, board_name = "{{ board }}";
|
||||||
</script>
|
</script>
|
||||||
|
<title>{{ settings.title }} ( /{{ board }}/ )</title>
|
||||||
{% include 'header.html' %}
|
{% include 'header.html' %}
|
||||||
</head>
|
</head>
|
||||||
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} theme-catalog active-catalog" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
|
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} theme-catalog active-catalog" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
|
||||||
@ -41,7 +42,7 @@
|
|||||||
<option value="large">{% trans 'Large' %}</option>
|
<option value="large">{% trans 'Large' %}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
<br></br>
|
||||||
<div class="threads">
|
<div class="threads">
|
||||||
<div id="Grid">
|
<div id="Grid">
|
||||||
{% for post in recent_posts %}
|
{% for post in recent_posts %}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
// - post-thread (a thread has been made)
|
// - post-thread (a thread has been made)
|
||||||
if ($action === 'all') {
|
if ($action === 'all') {
|
||||||
foreach ($boards as $board) {
|
foreach ($boards as $board) {
|
||||||
$b = new Catalog();
|
$b = new Catalog($settings);
|
||||||
|
|
||||||
$action = generation_strategy("sb_catalog", array($board));
|
$action = generation_strategy("sb_catalog", array($board));
|
||||||
if ($action == 'delete') {
|
if ($action == 'delete') {
|
||||||
@ -27,7 +27,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} elseif ($action == 'post-thread' || ($settings['update_on_posts'] && $action == 'post') || ($settings['update_on_posts'] && $action == 'post-delete') && in_array($board, $boards)) {
|
} elseif ($action == 'post-thread' || ($settings['update_on_posts'] && $action == 'post') || ($settings['update_on_posts'] && $action == 'post-delete') && in_array($board, $boards)) {
|
||||||
$b = new Catalog();
|
$b = new Catalog($settings);
|
||||||
|
|
||||||
$action = generation_strategy("sb_catalog", array($board));
|
$action = generation_strategy("sb_catalog", array($board));
|
||||||
if ($action == 'delete') {
|
if ($action == 'delete') {
|
||||||
@ -148,9 +148,12 @@
|
|||||||
/**
|
/**
|
||||||
* Build and save the HTML of the catalog for the given board
|
* Build and save the HTML of the catalog for the given board
|
||||||
*/
|
*/
|
||||||
public function build($board_name) {
|
public function build($settings, $board_name) {
|
||||||
|
global $config, $board;
|
||||||
|
if ($board['uri'] != $board_name) {
|
||||||
if (!openBoard($board_name)) {
|
if (!openBoard($board_name)) {
|
||||||
error(sprintf(_("Board %s doesn't exist"), $post['board']));
|
error(sprintf(_("Board %s doesn't exist"), $board_name));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (array_key_exists($board_name, $this->threadsCache)) {
|
if (array_key_exists($board_name, $this->threadsCache)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user