Components
Project allow bloggers to include custom steemit post on their website. All they need to do is paste simple javascript snipped on their website. It can be done whithout technical skill. It work just like a facebook widget. I implemented also SEO ipmrovement so widget show that original content is from steemit.
Proposal
I am going to improve configuration of widget. I want allow users to change some important CSS by caonfig. I also want display information about steemit. Maybe above a post. It could be banner with information about steemit. That banner should be displayed by default.
Another idea is create wordpress plugin which allow to use this library in wordpress post and articles.
Mockups / Examples
Implementation is very simple. To display article from steemit you need to copy and paste code from below. Then replace author and permalink with yuor own. Content will be displayed inside <div id="steemit-article" ></div>
<div id="steemit-article" ></div>
....
<script>
document.addEventListener("DOMContentLoaded", function() {
new Steemget({
author: 'piotr-galas',
permalink: 'o-continuous-integration'
})
});
</script>
<script src="https://cdn.jsdelivr.net/npm/steemget@0.1.2/js/app.js"></script>
Example page that where I use this plugin:
example
Benefits
Before I found steemit I blogged on my own blog. I needed to choose where to publish content. Now with this plugin I can always add articles on steemit and then with simple javascript, include it in my private blog. It is important to me.
I tried to find something similar, but available solutions display only collection of posts.
Posted on Utopian.io - Rewarding Open Source Contributors