From efc077997cd47bd5c6321b7b84adb0c0631a4e98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=B4=A0=C9=AA=E1=B4=84=E1=B4=9B=E1=B4=8F=CA=80=20=CA=99?= =?UTF-8?q?=E1=B4=8A=E1=B4=87=CA=9F=E1=B4=8B=CA=9C=E1=B4=8F=CA=9F=E1=B4=8D?= Date: Wed, 18 Jul 2018 11:45:54 +0200 Subject: [PATCH] Delete migrate-to-hugo.md --- migrate-to-hugo.md | 88 ---------------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 migrate-to-hugo.md diff --git a/migrate-to-hugo.md b/migrate-to-hugo.md deleted file mode 100644 index d0efe35..0000000 --- a/migrate-to-hugo.md +++ /dev/null @@ -1,88 +0,0 @@ -## Website Elements - -- Title -- Description -- Tabs that switches between categories - - Apps - - Tools (difference from apps?) - - Archives - - Videos - - Articles - - Discussions -- Below, after clicking category, show most popular tag within that category - and allow further filtering. (future allow multiple tags? Will be hard without JS) - - topic:blockchain - - topic:ethereum - - topic:research - - topic:file-sharing - - topic:chat - - state:prototype - - state:beta - - state:stable - - platform:firefox - - platform:chrome - - platform:windows -- List of items matching the selected filters ("apps" + "topic:chat" shows all chat apps) -- Each item gets a card - - layout can be X amount of cards depending on screen width - - each card has: - - title - - screenshot of item in action - - first 80 characters of description - - highlighted and on the top if `featured` - - the title+description are normal anchor tags - - Edit link for linking to the data file (and possibly row) in Github - for easy editing -- Link to repository -- Link to issue/markdown file describing how to suggest new items -- Link to `Ecosystem` category on discuss.ipfs.io - -## Data Structure - -- Each category has it's own data file within `data/` -- Title for each item has to be unique (category should not be in URL) -- Screenshot location is based on title. If no screenshot found, should use a default image - -Example `apps.yml` - -``` -title: 'Apps' -description: 'Applications built with IPFS or with functionality that uses IPFS' -items: - - title: Akasha - description: A Next-Generation Social Media Network, powered by Ethereum and embedded into IPFS - featured: true - url: https://akasha.world/ - - title: Alexandria - description: Decentralized content publishing / monetization platform - url: http://www.alexandria.io/learn/#integrated-technologies - # `featured` defaults to false -``` - -Example `videos.yml` - -``` -title: 'Videos' -description: 'Videos about IPFS' -items: - - title: IPFS Alpha | Why We Must Distribute The Web - url: https://www.youtube.com/watch?v=skMTdSEaCtA - featured: true - - title: Juan Benet at Stanford 2015 - url: https://www.youtube.com/watch?v=HUVmypx9HGI - # `featured` defaults to false -``` - -## Readme generation - -The guide for developing/building the website should not be in `readme.md` but -rather in `develop.md` or similar, since `readme.md` will be generated by hugo -on build time. Basically it should create the same we have now, based on items -inside `data/` - -## Sorting / Ordering / Ranking - -We will have a `featured` flag which will put those items at the top. - -However, we need to ensure that Hugo sorts the same way always and might want -some other metrics for ranking, like the `state` of the project or similar. \ No newline at end of file