Procházet zdrojové kódy

Add relUrl for featuredImage

Luiz F. A. de Prá před 3 roky
rodič
revize
f67caf19b9
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      layouts/posts/single.html

+ 2 - 2
layouts/posts/single.html

@@ -16,7 +16,7 @@
           <div class="date">
             <span class="posted-on">
               <i class="fa fa-calendar" aria-hidden="true"></i>
-              <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
+              <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
                 {{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
               </time>
             </span>
@@ -33,7 +33,7 @@
 
       <div>
         {{ if .Params.featuredImage }}
-          <img src='{{ .Params.featuredImage }}' alt="Featured image"/>
+          <img src="{{ .Params.featuredImage | relURL }}" alt="Featured image"/>
         {{ end }}
         {{ .Content }}
       </div>