mirror of
https://github.com/Frumph/comic-easel.git
synced 2026-07-19 13:29:13 -04:00
21 lines
475 B
PHP
21 lines
475 B
PHP
<div id="comiceasel-resources">
|
|
<div class="comiceasel-options">
|
|
<table class="widefat">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="3"><?php _e('Resources','comiceasel'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tr>
|
|
<td>
|
|
<?php
|
|
$got_file = wp_remote_get( 'http://frumph.net/downloads/webcomic-lists.html' );
|
|
if (isset($got_file['body']) && !empty($got_file['body'])) echo $got_file['body'];
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br />
|
|
</div>
|
|
</div>
|