├── .env.sample ├── .gitignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── TODO.md ├── bin ├── deploy.sh ├── init.sh └── post-deploy.sh ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── docker-compose.sample.yml ├── docs ├── Mobile - Channel info - Dark.png ├── Mobile - Channel opened - Dark.png ├── Mobile - Dark - Notifications.png ├── Mobile - Dark - Home.png ├── Mobile - Dark - Sidebar opened.png ├── Mobile - Profile - Dark.png ├── Mobile - Profile settings - Api keys - Dark-1.png ├── Mobile - Profile settings - Api keys - Dark.png ├── Mobile - Profile settings - Dark.png ├── Upvotocracy - Channel opened - Dark.png ├── Upvotocracy - Channel opened - Light.png ├── Upvotocracy - Home - Dark.png ├── Upvotocracy - Home - Light.png ├── Upvotocracy - Post comments - Dark.png ├── Upvotocracy - Post comments - Light.png ├── Upvotocracy - Profile - Dark.png ├── Upvotocracy - Profile - Light.png ├── Upvotocracy - Profile Settings - Dark.png ├── Upvotocracy - Profile Settings - Light.png ├── Upvotocracy - Profile Settings -API key - Dark.png ├── Upvotocracy - Profile Settings -API key - Light.png ├── Upvotocracy - Search results - Dark.png ├── Upvotocracy - Search results - Light.png └── Upvotocracy - Your invoice - Dark.png ├── etc └── numelli.com.conf ├── jsconfig.json ├── package.json ├── rollup.config.js ├── src ├── api │ ├── categories.js │ ├── create-api.js │ └── editSubscriptions.js ├── client.js ├── components │ ├── CategoriesBar │ │ ├── CategoriesBar.svelte │ │ ├── Category.svelte │ │ ├── HideToggle.svelte │ │ ├── SubscribeButton.svelte │ │ └── SubscriberCount.svelte │ ├── CategoryForm.svelte │ ├── Comments │ │ ├── Comment.svelte │ │ ├── CommentForm.svelte │ │ └── CommentList.svelte │ ├── ErrorDropdown.svelte │ ├── Footer.svelte │ ├── LoginRegisterForm.svelte │ ├── MoreInfoBar │ │ ├── MoreInfo.svelte │ │ └── MoreInfoSmall.svelte │ ├── NotificationsBar │ │ ├── Notification.svelte │ │ └── NotificationsBar.svelte │ ├── Payments │ │ └── Stripe.svelte │ ├── Post.svelte │ ├── PostList.svelte │ ├── SearchBar.svelte │ ├── SortBar.svelte │ ├── Spinner.svelte │ ├── TopBar │ │ ├── ComposeButton.svelte │ │ ├── DropdownMenu.svelte │ │ ├── Hamburger.svelte │ │ ├── Logo.svelte │ │ ├── ProfileInfo.svelte │ │ └── TopBar.svelte │ ├── Upload.svelte │ └── VoteArrow.svelte ├── routes │ ├── _error.svelte │ ├── _layout.svelte │ ├── a │ │ ├── [category].svelte │ │ └── [category] │ │ │ ├── [postId].svelte │ │ │ └── edit.svelte │ ├── compose.svelte │ ├── index.svelte │ ├── leaderboard.svelte │ ├── login.svelte │ ├── mycategories.svelte │ ├── newcategory.svelte │ ├── privacy.svelte │ ├── register.svelte │ ├── search.svelte │ ├── settings │ │ ├── _layout.svelte │ │ ├── apikeys.svelte │ │ ├── index.svelte │ │ └── invoices.svelte │ ├── sponsor.svelte │ ├── tag │ │ └── [hashtag].svelte │ ├── terms.svelte │ └── u │ │ └── [username].svelte ├── server.js ├── service-worker.js ├── store.js ├── template.html └── utils │ ├── abbreviateNumber.js │ ├── clipboard.js │ ├── exchange.js │ ├── parseContent.js │ └── time.js └── static ├── NotoSans-Regular.ttf ├── close.png ├── favicon.ico ├── global.css ├── icons ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── favicon-128.png ├── favicon-16x16.png ├── favicon-196x196.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png └── title.png ├── images ├── logo-dark.svg ├── logo-light.svg ├── placeholder.png └── profile_image_placeholder.jpg ├── manifest.json └── robots.txt /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/bin/deploy.sh -------------------------------------------------------------------------------- /bin/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/bin/init.sh -------------------------------------------------------------------------------- /bin/post-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/bin/post-deploy.sh -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:7809", 3 | "video": false 4 | } 5 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/cypress/integration/spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /docker-compose.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docker-compose.sample.yml -------------------------------------------------------------------------------- /docs/Mobile - Channel info - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Channel info - Dark.png -------------------------------------------------------------------------------- /docs/Mobile - Channel opened - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Channel opened - Dark.png -------------------------------------------------------------------------------- /docs/Mobile - Dark - Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Dark - Notifications.png -------------------------------------------------------------------------------- /docs/Mobile - Dark - Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Dark - Home.png -------------------------------------------------------------------------------- /docs/Mobile - Dark - Sidebar opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Dark - Sidebar opened.png -------------------------------------------------------------------------------- /docs/Mobile - Profile - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Profile - Dark.png -------------------------------------------------------------------------------- /docs/Mobile - Profile settings - Api keys - Dark-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Profile settings - Api keys - Dark-1.png -------------------------------------------------------------------------------- /docs/Mobile - Profile settings - Api keys - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Profile settings - Api keys - Dark.png -------------------------------------------------------------------------------- /docs/Mobile - Profile settings - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Mobile - Profile settings - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Channel opened - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Channel opened - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Channel opened - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Channel opened - Light.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Home - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Home - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Home - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Home - Light.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Post comments - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Post comments - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Post comments - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Post comments - Light.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Profile - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Profile - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Profile - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Profile - Light.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Profile Settings - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Profile Settings - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Profile Settings - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Profile Settings - Light.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Profile Settings -API key - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Profile Settings -API key - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Profile Settings -API key - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Profile Settings -API key - Light.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Search results - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Search results - Dark.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Search results - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Search results - Light.png -------------------------------------------------------------------------------- /docs/Upvotocracy - Your invoice - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/docs/Upvotocracy - Your invoice - Dark.png -------------------------------------------------------------------------------- /etc/numelli.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/etc/numelli.com.conf -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/api/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/api/categories.js -------------------------------------------------------------------------------- /src/api/create-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/api/create-api.js -------------------------------------------------------------------------------- /src/api/editSubscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/api/editSubscriptions.js -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/client.js -------------------------------------------------------------------------------- /src/components/CategoriesBar/CategoriesBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/CategoriesBar/CategoriesBar.svelte -------------------------------------------------------------------------------- /src/components/CategoriesBar/Category.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/CategoriesBar/Category.svelte -------------------------------------------------------------------------------- /src/components/CategoriesBar/HideToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/CategoriesBar/HideToggle.svelte -------------------------------------------------------------------------------- /src/components/CategoriesBar/SubscribeButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/CategoriesBar/SubscribeButton.svelte -------------------------------------------------------------------------------- /src/components/CategoriesBar/SubscriberCount.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/CategoriesBar/SubscriberCount.svelte -------------------------------------------------------------------------------- /src/components/CategoryForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/CategoryForm.svelte -------------------------------------------------------------------------------- /src/components/Comments/Comment.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Comments/Comment.svelte -------------------------------------------------------------------------------- /src/components/Comments/CommentForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Comments/CommentForm.svelte -------------------------------------------------------------------------------- /src/components/Comments/CommentList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Comments/CommentList.svelte -------------------------------------------------------------------------------- /src/components/ErrorDropdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/ErrorDropdown.svelte -------------------------------------------------------------------------------- /src/components/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Footer.svelte -------------------------------------------------------------------------------- /src/components/LoginRegisterForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/LoginRegisterForm.svelte -------------------------------------------------------------------------------- /src/components/MoreInfoBar/MoreInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/MoreInfoBar/MoreInfo.svelte -------------------------------------------------------------------------------- /src/components/MoreInfoBar/MoreInfoSmall.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/MoreInfoBar/MoreInfoSmall.svelte -------------------------------------------------------------------------------- /src/components/NotificationsBar/Notification.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/NotificationsBar/Notification.svelte -------------------------------------------------------------------------------- /src/components/NotificationsBar/NotificationsBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/NotificationsBar/NotificationsBar.svelte -------------------------------------------------------------------------------- /src/components/Payments/Stripe.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Payments/Stripe.svelte -------------------------------------------------------------------------------- /src/components/Post.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Post.svelte -------------------------------------------------------------------------------- /src/components/PostList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/PostList.svelte -------------------------------------------------------------------------------- /src/components/SearchBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/SearchBar.svelte -------------------------------------------------------------------------------- /src/components/SortBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/SortBar.svelte -------------------------------------------------------------------------------- /src/components/Spinner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Spinner.svelte -------------------------------------------------------------------------------- /src/components/TopBar/ComposeButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/TopBar/ComposeButton.svelte -------------------------------------------------------------------------------- /src/components/TopBar/DropdownMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/TopBar/DropdownMenu.svelte -------------------------------------------------------------------------------- /src/components/TopBar/Hamburger.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/TopBar/Hamburger.svelte -------------------------------------------------------------------------------- /src/components/TopBar/Logo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/TopBar/Logo.svelte -------------------------------------------------------------------------------- /src/components/TopBar/ProfileInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/TopBar/ProfileInfo.svelte -------------------------------------------------------------------------------- /src/components/TopBar/TopBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/TopBar/TopBar.svelte -------------------------------------------------------------------------------- /src/components/Upload.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/Upload.svelte -------------------------------------------------------------------------------- /src/components/VoteArrow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/components/VoteArrow.svelte -------------------------------------------------------------------------------- /src/routes/_error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/_error.svelte -------------------------------------------------------------------------------- /src/routes/_layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/_layout.svelte -------------------------------------------------------------------------------- /src/routes/a/[category].svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/a/[category].svelte -------------------------------------------------------------------------------- /src/routes/a/[category]/[postId].svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/a/[category]/[postId].svelte -------------------------------------------------------------------------------- /src/routes/a/[category]/edit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/a/[category]/edit.svelte -------------------------------------------------------------------------------- /src/routes/compose.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/compose.svelte -------------------------------------------------------------------------------- /src/routes/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/index.svelte -------------------------------------------------------------------------------- /src/routes/leaderboard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/leaderboard.svelte -------------------------------------------------------------------------------- /src/routes/login.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/login.svelte -------------------------------------------------------------------------------- /src/routes/mycategories.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/mycategories.svelte -------------------------------------------------------------------------------- /src/routes/newcategory.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/newcategory.svelte -------------------------------------------------------------------------------- /src/routes/privacy.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/privacy.svelte -------------------------------------------------------------------------------- /src/routes/register.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/register.svelte -------------------------------------------------------------------------------- /src/routes/search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/search.svelte -------------------------------------------------------------------------------- /src/routes/settings/_layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/settings/_layout.svelte -------------------------------------------------------------------------------- /src/routes/settings/apikeys.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/settings/apikeys.svelte -------------------------------------------------------------------------------- /src/routes/settings/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/settings/index.svelte -------------------------------------------------------------------------------- /src/routes/settings/invoices.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/settings/invoices.svelte -------------------------------------------------------------------------------- /src/routes/sponsor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/sponsor.svelte -------------------------------------------------------------------------------- /src/routes/tag/[hashtag].svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/tag/[hashtag].svelte -------------------------------------------------------------------------------- /src/routes/terms.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/terms.svelte -------------------------------------------------------------------------------- /src/routes/u/[username].svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/routes/u/[username].svelte -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/server.js -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/store.js -------------------------------------------------------------------------------- /src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/template.html -------------------------------------------------------------------------------- /src/utils/abbreviateNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/utils/abbreviateNumber.js -------------------------------------------------------------------------------- /src/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/utils/clipboard.js -------------------------------------------------------------------------------- /src/utils/exchange.js: -------------------------------------------------------------------------------- 1 | function exchange(val) { 2 | return fetch() 3 | 4 | } -------------------------------------------------------------------------------- /src/utils/parseContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/utils/parseContent.js -------------------------------------------------------------------------------- /src/utils/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/src/utils/time.js -------------------------------------------------------------------------------- /static/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /static/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/close.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/global.css -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /static/icons/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/favicon-128.png -------------------------------------------------------------------------------- /static/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/favicon-16x16.png -------------------------------------------------------------------------------- /static/icons/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/favicon-196x196.png -------------------------------------------------------------------------------- /static/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/favicon-32x32.png -------------------------------------------------------------------------------- /static/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/favicon-96x96.png -------------------------------------------------------------------------------- /static/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/favicon.ico -------------------------------------------------------------------------------- /static/icons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/mstile-144x144.png -------------------------------------------------------------------------------- /static/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/mstile-150x150.png -------------------------------------------------------------------------------- /static/icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/mstile-310x150.png -------------------------------------------------------------------------------- /static/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/mstile-310x310.png -------------------------------------------------------------------------------- /static/icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/mstile-70x70.png -------------------------------------------------------------------------------- /static/icons/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/icons/title.png -------------------------------------------------------------------------------- /static/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/images/logo-dark.svg -------------------------------------------------------------------------------- /static/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/images/logo-light.svg -------------------------------------------------------------------------------- /static/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/images/placeholder.png -------------------------------------------------------------------------------- /static/images/profile_image_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/images/profile_image_placeholder.jpg -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profullstack/upvotocracy-ui-ssr/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | --------------------------------------------------------------------------------