144 lines
5.8 KiB
PHP
144 lines
5.8 KiB
PHP
<?php
|
|
function sluggify($input) {
|
|
return strtolower(str_replace(' ', '-', $input));
|
|
}
|
|
?>
|
|
|
|
<!-- wp:paragraph -->
|
|
<p>The Streets People Love campaign offers council candidates the opportunity to take the following pledge:</p>
|
|
<!-- /wp:paragraph -->
|
|
|
|
<!-- wp:paragraph {"style":{"color":{"background":"#10B5B0"}}} -->
|
|
<p class="has-background" style="background-color:#10B5B0">If elected, I pledge to vote for a national Active Transport Infrastructure Program that invests $400 million annually, equivalent to $15 per person, for the duration of the <a href="https://www.betterstreets.org.au/2025-federal-election">United Nations Decade of Sustainable Transport</a>, from 2026 to 2035.</p>
|
|
<!-- /wp:paragraph -->
|
|
|
|
<!-- wp:paragraph -->
|
|
<p>Candidates from these councils have taken the pledge:</p>
|
|
<!-- /wp:paragraph -->
|
|
|
|
<?php
|
|
$councilCount = count($councils);
|
|
?>
|
|
|
|
<?php if ($councilCount > 1): ?>
|
|
|
|
<?php
|
|
|
|
if ($councilCount > 8) {
|
|
$councilListChunkSize = ceil($councilCount / 2);
|
|
} else {
|
|
$councilListChunkSize = $councilCount;
|
|
}
|
|
|
|
$councilChunks = array_chunk($councils, $councilListChunkSize);
|
|
|
|
?>
|
|
<!-- wp:columns {"className":"council-list-columns"} -->
|
|
<div class="wp-block-columns council-list-columns">
|
|
|
|
<?php for ($columnIdx = 0; $columnIdx < 4; $columnIdx++): ?>
|
|
<!-- wp:column {"verticalAlignment":"top","style":{"spacing":{"padding":{"top":"0","bottom":"0"}}}} -->
|
|
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0;padding-bottom:0">
|
|
|
|
<?php if (array_key_exists($columnIdx, $councilChunks)): ?>
|
|
<!-- wp:list {"style":{"spacing":{"margin":{"top":"0","right":"0","bottom":"0","left":"0"}}}} -->
|
|
<ul style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0" class="wp-block-list">
|
|
|
|
<?php foreach($councilChunks[$columnIdx] as $councilName): ?>
|
|
<!-- wp:list-item -->
|
|
<li><a href="#<?php echo sluggify($councilName); ?>"><?php echo $councilName; ?></a></li>
|
|
<!-- /wp:list-item -->
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
<!-- /wp:list -->
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<!-- /wp:column -->
|
|
<?php endfor; ?>
|
|
|
|
</div>
|
|
<!-- /wp:columns -->
|
|
<?php else: ?>
|
|
<!-- wp:paragraph -->
|
|
<p></p>
|
|
<!-- /wp:paragraph -->
|
|
<?php endif; ?>
|
|
|
|
<?php foreach ($councils as $key => $council): ?>
|
|
<!-- wp:heading {"level":3,"className":"is-style-default"} -->
|
|
<?php $groupSlug = sluggify($council); ?>
|
|
<h3 class="wp-block-heading is-style-default" id="<?php echo $groupSlug; ?>"><a style="text-decoration: none;" href="/<?php echo $lga_pages[$key]; ?>"><?php echo htmlspecialchars($council); ?></a></h3>
|
|
<!-- /wp:heading -->
|
|
|
|
<?php
|
|
$groupCandidates = array_filter($candidates, function ($candidate) use ($council) {
|
|
return $candidate['Council'] === $council;
|
|
});
|
|
|
|
?>
|
|
|
|
<?php
|
|
$columnCount = 4;
|
|
|
|
$chunkedCouncilCandidates = array_chunk($groupCandidates, $columnCount);
|
|
?>
|
|
|
|
<?php foreach($chunkedCouncilCandidates as $chunk): ?>
|
|
<!-- wp:columns -->
|
|
<div class="wp-block-columns">
|
|
|
|
<?php for ($columnIdx = 0; $columnIdx < $columnCount; $columnIdx++): ?>
|
|
<!-- wp:column -->
|
|
<div class="wp-block-column">
|
|
|
|
<?php if (array_key_exists($columnIdx, $chunk)): ?>
|
|
<?php
|
|
$candidate = $chunk[$columnIdx];
|
|
|
|
if (isset($candidate['Elected']) && $candidate['Elected'] === 'y') {
|
|
$candidate_elected = true;
|
|
} else {
|
|
$candidate_elected = false;
|
|
}
|
|
|
|
if (isset($candidate['Picture']) && strlen($candidate['image_url'])) {
|
|
$candidate_image['url'] = $candidate['image_url'];
|
|
$candidate_image['id'] = $candidate['image_id'];
|
|
} else {
|
|
continue;
|
|
}
|
|
|
|
?>
|
|
|
|
<!-- wp:image {"id":<?php echo $candidate_image['id']; ?>,"width":"200px","height":"200px","scale":"cover","align":"center","style":{"color":{}},"className":"is-resized"} -->
|
|
<figure class="wp-block-image aligncenter is-resized <?php if ($candidate_elected) { echo "elected-candidate"; } ?>"><img src="<?php echo $candidate_image['url']; ?>" alt="" class="wp-image-<?php echo $candidate_image['id']; ?>" style="object-fit:cover;width:200px;height:200px;"/>
|
|
<?php if ($candidate_elected): ?>
|
|
<figcaption>ELECTED</figcaption>
|
|
<?php endif; ?>
|
|
</figure>
|
|
<!-- /wp:image -->
|
|
|
|
<!-- wp:heading {"textAlign":"center","className":"wp-block-heading has-text-align-center has-medium-font-size","style":{"spacing":{"margin":{"top":"1rem","bottom":"0.5rem"}}}} -->
|
|
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" style="margin-top:1rem;margin-bottom:0.5rem"><strong><?php echo htmlspecialchars($candidate['Candidate Name']); ?></strong></h2>
|
|
<!-- /wp:heading -->
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<!-- /wp:column -->
|
|
<?php endfor; ?>
|
|
|
|
</div>
|
|
<!-- /wp:columns -->
|
|
<?php endforeach; ?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php if (isset($config['footer'])): ?>
|
|
<!-- wp:paragraph -->
|
|
<p><?php echo $config['footer']; ?></p>
|
|
<!-- /wp:paragraph -->
|
|
<?php endif; ?>
|