My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: webmentions should be loosely wrapped

+5 -4
+2 -3
sass/_post.scss
··· 159 159 margin: 2em 0; 160 160 } 161 161 162 - .webmention { 163 - overflow: hidden; 164 - text-overflow: ellipsis; 162 + .webmentions li { 163 + line-break: loose; 165 164 }
+3 -1
templates/page.html
··· 75 75 {{ mention.url }} 76 76 {%- endif -%} 77 77 </a> 78 - by <a href="{{ mention.author.url }}">{{ mention.author.name }}</a> 78 + {%- if mention.author.name != "" -%} 79 + by <a href="{{ mention.author.url }}">{{ mention.author.name }}</a> 80 + {%- endif -%} 79 81 </li> 80 82 {%- endfor -%} 81 83 </ul>