wp2static/views/deploy-cache-page.php
2020-02-22 18:08:00 +10:30

23 lines
482 B
PHP
Executable file

<br>
<table class="widefat striped">
<thead>
<tr>
<th>Path in Deploy Cache</th>
</tr>
</thead>
<tbody>
<?php if ( ! $view['paths'] ) : ?>
<tr>
<td>Deploy Cache is empty.</td>
</tr>
<?php endif; ?>
<?php foreach( $view['paths'] as $path ) : ?>
<tr>
<td><?php echo $path; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>