Browse Source

hopefully showing images in replies

master
jk 4 years ago
parent
commit
eddd78f075
  1. 2
      themes/nipponalba/layouts/partials/webmention.html
  2. 5
      themes/nipponalba/static/css/style.css

2
themes/nipponalba/layouts/partials/webmention.html

@ -17,7 +17,7 @@
<p>{{ .content.text | safeHTML }}</p> <p>{{ .content.text | safeHTML }}</p>
{{ end }} {{ end }}
{{ if .photo }}{{ range .photo }} {{ if .photo }}{{ range .photo }}
<p><img src="{{ . }}" width="500px"/></p>
<img class="reply-img" src="{{ . }}"/>
{{ end }}{{ end }} {{ end }}{{ end }}
<time>{{ dateFormat "Mon, 02 Jan 2006 15:04:05 GMT" ( time .published ) }}</time></section></section> <time>{{ dateFormat "Mon, 02 Jan 2006 15:04:05 GMT" ( time .published ) }}</time></section></section>
{{ end }} {{ end }}

5
themes/nipponalba/static/css/style.css

@ -721,6 +721,11 @@ hr {
#response p{ #response p{
margin:0; margin:0;
} }
.reply-img{
max-width:90%;
display:block;
border-radius: 15px;
}
time{ time{
font-size:13px; font-size:13px;
} }