diff --git a/routes/_components/AccountProfile.html b/routes/_components/AccountProfile.html deleted file mode 100644 index 5da765e9..00000000 --- a/routes/_components/AccountProfile.html +++ /dev/null @@ -1,318 +0,0 @@ -
-
- - -
-
- - \ No newline at end of file diff --git a/routes/_components/profile/AccountProfile.html b/routes/_components/profile/AccountProfile.html new file mode 100644 index 00000000..bca468e6 --- /dev/null +++ b/routes/_components/profile/AccountProfile.html @@ -0,0 +1,98 @@ +
+
+ + +
+
+ + \ No newline at end of file diff --git a/routes/_components/profile/AccountProfileDetails.html b/routes/_components/profile/AccountProfileDetails.html new file mode 100644 index 00000000..0fef84ad --- /dev/null +++ b/routes/_components/profile/AccountProfileDetails.html @@ -0,0 +1,63 @@ +
+
+ + +
+
+ + +
+
+ + +
+
+ \ No newline at end of file diff --git a/routes/_components/profile/AccountProfileFollow.html b/routes/_components/profile/AccountProfileFollow.html new file mode 100644 index 00000000..71888261 --- /dev/null +++ b/routes/_components/profile/AccountProfileFollow.html @@ -0,0 +1,72 @@ +
+ {{#if verifyCredentials && relationship && verifyCredentials.id !== relationship.id}} + + {{/if}} +
+ + \ No newline at end of file diff --git a/routes/_components/profile/AccountProfileHeader.html b/routes/_components/profile/AccountProfileHeader.html new file mode 100644 index 00000000..1375518e --- /dev/null +++ b/routes/_components/profile/AccountProfileHeader.html @@ -0,0 +1,84 @@ +
+ +
+
+ + {{account.display_name || account.acct}} + +
+
+ {{'@' + account.acct}} +
+
+ {{#if relationship && relationship.followed_by}} + Follows you + {{/if}} +
+ + \ No newline at end of file diff --git a/routes/_components/profile/AccountProfileNote.html b/routes/_components/profile/AccountProfileNote.html new file mode 100644 index 00000000..eb543c55 --- /dev/null +++ b/routes/_components/profile/AccountProfileNote.html @@ -0,0 +1,45 @@ +
+ {{{massagedNote}}} +
+ + \ No newline at end of file diff --git a/routes/_pages/accounts/[accountId].html b/routes/_pages/accounts/[accountId].html index 585465a8..3525e35e 100644 --- a/routes/_pages/accounts/[accountId].html +++ b/routes/_pages/accounts/[accountId].html @@ -25,7 +25,7 @@ import HiddenFromSSR from '../../_components/HiddenFromSSR' import DynamicPageBanner from '../../_components/DynamicPageBanner.html' import { updateProfileAndRelationship } from '../../_actions/accounts' - import AccountProfile from '../../_components/AccountProfile.html' + import AccountProfile from '../../_components/profile/AccountProfile.html' import PinnedStatuses from '../../_components/timeline/PinnedStatuses.html' export default {