rss-to-activitypub/views/user.pug
Darius Kazemi cf8b1721d9 Add profile description field from RSS description
This adds a `summary` field to the `actor` object, populated from
the RSS feed's top level <description> element. This makes the
<description> content into the profile description.
2018-11-17 15:54:57 -08:00

17 lines
618 B
Plaintext

html
head
<meta name="viewport" content="width=device-width, initial-scale=1">
title= displayName
style
include style.css
body
h1= displayName
img(src=imageUrl)
h3.account #{accountName}
p #{description}
p <strong><em>What you're looking at is an RSS feed that's been converted into an account that Mastodon (or any other ActivityPub social network) can subscribe to. Put the username above into your user search and you should be able to find this feed and subscribe!</em></strong>
h2 Feed items
ul
for item in items
li: a(href=item.link) #{item.title}