Browse Source

Starting work toward Issue #108 this a start (#109)

Signed-off-by: Mary Anthony <mary@blockstack.com>
feat/clarity-updates
Moxiegirl 6 years ago
committed by GitHub
parent
commit
fefd9295d1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 39
      _data/community.json
  2. 1
      _data/navigation_learn.yml
  3. 24
      _develop/communityResources.md

39
_data/community.json

@ -0,0 +1,39 @@
{
"resources" :[
{
"title": "Blockstack + React: A TechRally Presentation",
"url": "https://www.youtube.com/channel/UCtXf2lbDGQe7h-PpqpAoFig",
"type": "video",
"date": "01-01-2019",
"description": "A series of short videos that takes users through the process of building a decentralized application (DApp) with Blockstack and React. "
},
{
"title": "Building decentralized apps with blockstack.js",
"url": "https://docs.google.com/presentation/d/1KUL7NVGeP4EFyodF-ANCF7Bw05QM4KGBMxGvQbKFsx8/edit?usp=sharing",
"type": "presentation",
"date": "07-18-2018",
"description": "Introduction to using blockstack.js"
},
{
"title": "Blockstack Academy",
"url": "https://www.youtube.com/playlist?list=PLXS8JJHIn4nEv_LcXIaklH_QAZaDEVD8q",
"date": "09-26-2017",
"type": "video",
"description" : "A series of educational videos featuring members of the Blockstack community and core contributors."
},
{
"title": "Blockstack: A New Internet That Brings Privacy & Property Rights to Cyberspace",
"url": "https://youtu.be/Z4bMFKBRg_k",
"type": "video",
"date": "06-22-2017",
"description": "Meet the developers behind Blockstack, who are using blockchain technology to reconfigure the web."
},
{
"title": "Walkthrough of the Blockstack Browser, December 2017",
"url": "https://youtu.be/WopvxEM7O84",
"type": "video",
"date": "12-18-2017",
"description": "Walks through downloading and using Blockstack's new decentralized internet, which gives users control over their data and the applications they share it with. Download the browser for the decentralized internet at blockstack.org."
}
]
}

1
_data/navigation_learn.yml

@ -16,6 +16,7 @@
- browser/todo-list
- browser/blockstack_storage
- develop/auth_provider
- develop/communityResources
- title: Work with an SDK
docs:

24
_develop/communityResources.md

@ -0,0 +1,24 @@
---
layout: learn
permalink: /:collection/:path.html
---
# Community Learning Resources
You can use these community resources to learn more. To add your own resources,
please make a pull request or send us an issue on Github. We are happy to add
other resources.
<table class="uk-table">
<thead>
<tr>
<th>Resource Links</th>
<th class="uk-width-1-4">Date</th>
</tr>
</thead>
{% for resource in site.data.community.resources %}
<tr>
<td><p><a href="{{ resource.url }}" target="\_blank">{{ resource.title }}</a> {{resource.description}} (<emphasis>{{resource.type}}</emphasis>)</p></td>
<td>{{resource.date}}</td>
</tr>
{% endfor %}
</table>
Loading…
Cancel
Save