Commit 46956385 authored by Jakob Moser's avatar Jakob Moser
Browse files

Fix likely broken URL

parent 49173483
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -20,15 +20,13 @@ get_header();
?>
<main>
    <article>
        <header style="background-image:url('
            <?php if(has_post_thumbnail()) {
        <header style="background-image:url('<?php if(has_post_thumbnail()) {
                // A header configured specifically for this page
                the_post_thumbnail_url();
            } else {
                // Fall back to the default header (which can be configured site-wide, so we can't hardcode the URL)
                header_image();
            } ?>
        ')">
            } ?>')">
            <h1><?php the_title(); ?></h1>
        </header>
        <div class="content">
+2 −4
Original line number Diff line number Diff line
@@ -22,15 +22,13 @@ get_header();
?>
<main>
    <article>
        <header style="background-image:url('
            <?php if(has_post_thumbnail()) {
        <header style="background-image:url('<?php if(has_post_thumbnail()) {
                // A header configured specifically for this post
                the_post_thumbnail_url();
            } else {
                // Fall back to the default header (which can be configured site-wide, so we can't hardcode the URL)
                header_image();
            } ?>
        ')">
            } ?>')">
            <h1><?php the_title(); ?></h1>
        </header>
        <div class="content">
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
 * Author: personads :: Maximilian Müller-Eberstein (ursprüngliche Version und Design); Jakob Moser (Code-Rewrite)
 * Author URI: https://personads.me/
 *
 * Version: 1.3.1-beta
 * Version: 1.3.1-beta.1
 *
 * License: GNU General Public License v3.0
 * License URI: https://www.gnu.org/licenses/gpl-3.0.html