create account

Cartel Post Framework: How To Create Stunning Posts For HIVE Communities by oneup-cartel

View this thread on: hive.blogpeakd.comecency.com
· @oneup-cartel · (edited)
$66.43
Cartel Post Framework: How To Create Stunning Posts For HIVE Communities
![Cartel-Post-Framwork.jpg](https://files.peakd.com/file/peakd-hive/flauwy/23vsBnYRAYNh4hFpFsfjTQrV8PuR7SJTG1vqihQSKmWtXHGFJ4SQuDXJH8bsA7SDt7n11.jpg)


*This post is a guide for the operators, writers and editors of the Cartel - as well as any other content creator on HIVE, Splintertalk, 1UP, LeoFinance and co, to create a great design and structure for articles. It explains how to use relevant markdown and PeakD Snippets to create awesome content - **Cartel-style!***


> * Special cover graphic with recognizable branding
> * 2-3 sentences introduction
> * *italic* font by using <code>_ underline _</code> or <code>* star *</code> without the empty space
> * Below a special Cartel divider, either with Cartel logo, mascot or game content



![cartel-divider1.png](https://files.peakd.com/file/peakd-hive/flauwy/23swZzizNccoNx3eDNYGcZewey9LMsaBdgAtdY9uYSxbgBCwGimrbyFGpjAMafvBwkNp8.png)

## Adding Headlines And Text
Your first paragraph begins with a headline 2, with only the post title at a larger hierarchy. You should usually **use h2 at every 2-4 paragraphs**, where a different part of the post begins. If you need to do further headlines within a headline 2 for better post structure, you can add a few headline 3 for that. The next headline 2 would start a new topic then.

___Remember__: On PeakD you can see the h2 and h3 headlines on the top left of each post and use them for overview as well as links to those headlines._

You can write headlines with markdown, a simple text-styling method supported by all HIVE frontends, by using **two or three hash symbols # at the beginning of a new line**. Then leave one space free and start adding your headline. 

> <code>## Headline2</code>
> <code>### Headline3</code>

h2 is usually a larger text-size than h3 but depends from frontend to frontend. Headlines should be short and informative about the specific content.

> * Add **bolded text** to highlight a few words, **not entire sentences** though.
> * **bold** markdown: <code>__ underline __</code> or <code>** star **</code> without the empty space
> * Below **another** Cartel divider, either with Cartel logo, mascot or game content

Another very relevant aspect of an informative post is a minimum text-length. 500-700 words are on the shorter end and quick reads. Anything below that would work for videos, images and short content. Writing too much though can, if the content or writing-style don't carry that, be counter-productive as well. Finding a good balance is an art.

![cartel-divider6.png](https://files.peakd.com/file/peakd-hive/flauwy/23tv1ySYcHHNz4mS4B91VNYW3UFRLy8A8j98WvcYiDAZJbuesnG5EVzMPpCU8Hk5w7P3T.png)

## Adding Images
One of the most important part of the post are the visuals. While the text contains the relevant information, the images catch the readers attention, to guide and motivate to keep on reading. A post with many paragraphs, headlines and dividers alone would be pretty boring to look at. 

<div class="pull-right">

![King-1UP-Oneup-Cartel-slim.png](https://files.peakd.com/file/peakd-hive/flauwy/23vhsM8SeDn7rUdgUep6g7m5e3uDZUan9PkFkHapo7vsttABfPvdEB8GbPwiMbYZNhvMS.png)

</div>

Full-size images and banners are great to add in the middle of some paragraphs of one headline. An often more subtle trick is to let the **text float around one image**, where the image is pulled to the left or right of the article. 

The code for that trick is a bit more tricky:

<code><open-brackets> Image URL </close-brackets></code>

Replace "open-brackets" with one of the two options below. Replace "close-brackets" with "div".

<code>div class="pull-right"</code>
or 
<code>div class="pull-left"</code>




To get the best look you have to have enough text in the first place. If you have only one paragraph, the floating image would, depending on its size, stick out of the text below and that doesn't look good. Instead, you should always make sure that you use this effect with 2-3 paragraphs, where it works best to fill text on top, at the side and below the image.

___All images should be uploaded via an official HIVE frontend__ to keep the storage of the files in the hands of the community_.


![japex-divider2.png](https://files.peakd.com/file/peakd-hive/flauwy/23tRvehi73n1zxUwWzUhnt6jWKzveRtZuGpHXPFwua2AKcN2RzwfvjGye42xY8tnCYe1N.png)

## Adding Tables



Another great way to present content are tables, which work for both text and images. These are very easy to create with markdown when fully understood:


![King_1UP_Mushroom_350px.png](https://files.peakd.com/file/peakd-hive/flauwy/23wMTpCakBBCoapJV9xBnwEY3fUe72DNVi5qXKB1wv1wrJcPqF5s8ZZt965xwj5ggxqJs.png) | ![King_1UP_Mushroom_350px.png](https://files.peakd.com/file/peakd-hive/flauwy/23wMTpCakBBCoapJV9xBnwEY3fUe72DNVi5qXKB1wv1wrJcPqF5s8ZZt965xwj5ggxqJs.png) | ![King_1UP_Mushroom_350px.png](https://files.peakd.com/file/peakd-hive/flauwy/23wMTpCakBBCoapJV9xBnwEY3fUe72DNVi5qXKB1wv1wrJcPqF5s8ZZt965xwj5ggxqJs.png)
-|-|-
<center>King 1UP</center> | <center>King 2UP</center> | <center>King 3UP</center>

---

_Above is an example of a three column table with two visible rows (and three written rows in markdown; first row, markdown table code, second row). The first row has an image URL in each cell and the second row has text (centered with **< center >** tags around the text in each cell)._

_This is what the code looks like (without the center tags):_

> image <code>|</code> image <code>|</code> image 
> <code>-|-|-</code>
> text <code>|</code> text <code>|</code> text

---

A table is always structured in at least two lines of code: 

The head row and the markdown code. Each additional row would be an additional line in the editor.

The first row begins in a new line with some text or an image URL. After the end of the content for the first cell of the table, **write a horizontal line <code>|</code>** followed by the content for the second cell and so on. The content for **each table row must be within one line** and not be interrupted through a line-break.

In the second line of any markdown table must be the following code for two columns, three columns, four columns and so on:

<code>-|-</code> or <code>-|-|-</code> or <code>-|-|-|-</code>

If the third and all consecutive rows are directly following these two table code lines above AND are probably formatted with horizontal line breakers, they will be integrated into the table as well. 

___Note:__ When you create tables with different images sizes, especially with different heights, the table will no scale them and the layout can look broken. To fix this, you should make sure the added images have all the same size by using an image editor._ 


![cartel-divider6.png](https://files.peakd.com/file/peakd-hive/flauwy/23tv1ySYcHHNz4mS4B91VNYW3UFRLy8A8j98WvcYiDAZJbuesnG5EVzMPpCU8Hk5w7P3T.png)


## Using PeakD Snippets

A very useful tool on the [PeakD.com](https://peakd.com/) frontend for HIVE is the **Snippets** feature in the editor. 

---

![snippets.PNG](https://files.peakd.com/file/peakd-hive/flauwy/23tbK713oTmeQrys9bd3VW1HGEsQo8LDnMxuVxukwv7G7UAgSq4fzdHJmG9e5aDvdK9ME.PNG)

Here you can save code snippets like the image pull-right we discussed above and save valuable time. You can also safe image-URLs as snippets and store frequently used graphics for post design. You will be able to **access them from any device** where you login to your HIVE account via PeakD. 

___Remember__: If you manage multiple account, you need to create new snippets for each one of them._


![Snippets2.jpg](https://files.peakd.com/file/peakd-hive/flauwy/23tGVqXUHFzx2egErSsC8kWHYkDJMsj9NK1saGWvw4AhRe6cyaSic9urV3bE9Jx7mCUJM.jpg)

Just give your new snippet a name, add the content of the snippet code under "content you want to safe" and click SAVE. To get a snippet, just open it in your snippet list and click on COPY, to add the code into your memory and then past it into your text passage.

With snippets you can safe entire sections, specific footers for example. The next and final paragraph is an example of how such a footer could look like.

![japex-divider3.png](https://files.peakd.com/file/peakd-hive/flauwy/23w28xzEVAoUtf24evAVXrFosRi1d1NCVi8mzzXvy9hLYEE86We59EqTGf4VCK8RWJ71i.png)

## What Is The Oneup Cartel?



![Oneup-Cartel-Twitter-banner.png](https://files.peakd.com/file/peakd-hive/oneup-cartel/23tvAw3wUSQEFRo61AmzSMfGskUN8BNV2HUrevoLJTbfvFYgTnedv5WeHWCkBHR2rBSeJ.png)



Meta Gaming Guild | Meta Curation | Meta Dividend Token
-|-|-
Splinterlands, Hashkings, dCity, dCrops, Rising Star, Farming Tales, Crypto Raiders, Gods Unchained, Skyweaver, Ehon, PsyberX, Ragnarok, ChiFiBots - <br> and this is just the beginning. | With @curation-cartel we control over a dozen different curation accounts for HIVE tribes, including the popular @monster-curator and @oneup-curator, with total delegations worth over $100,000 USD. | Our token is the [CARTEL](https://tribaldex.com/trade/CARTEL) and by selling it we generate funds to invest into games and HIVE tribes, as well as dividend tokens, to eventually pay dividends to CARTEL token holders.

_[Join us on Discord](https://discord.gg/aCZQ846set) to learn more about the Cartel and Oneup._



👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 589 others
properties (23)
authoroneup-cartel
permlinkcartel-post-framework-how-to-create-stunning-posts-for-hive-communities
categoryhive-102223
json_metadata{"app":"peakd/2021.12.1","format":"markdown","author":"flauwy","tags":["cartel","oneup","leofinance","ctp","pob","vyb","neoxian","palnet","hive-engine","spt"],"users":["curation-cartel","monster-curator","oneup-curator"],"image":["https://files.peakd.com/file/peakd-hive/flauwy/23vsBnYRAYNh4hFpFsfjTQrV8PuR7SJTG1vqihQSKmWtXHGFJ4SQuDXJH8bsA7SDt7n11.jpg","https://files.peakd.com/file/peakd-hive/flauwy/23swZzizNccoNx3eDNYGcZewey9LMsaBdgAtdY9uYSxbgBCwGimrbyFGpjAMafvBwkNp8.png","https://files.peakd.com/file/peakd-hive/flauwy/23tv1ySYcHHNz4mS4B91VNYW3UFRLy8A8j98WvcYiDAZJbuesnG5EVzMPpCU8Hk5w7P3T.png","https://files.peakd.com/file/peakd-hive/flauwy/23vhsM8SeDn7rUdgUep6g7m5e3uDZUan9PkFkHapo7vsttABfPvdEB8GbPwiMbYZNhvMS.png","https://files.peakd.com/file/peakd-hive/flauwy/23tRvehi73n1zxUwWzUhnt6jWKzveRtZuGpHXPFwua2AKcN2RzwfvjGye42xY8tnCYe1N.png","https://files.peakd.com/file/peakd-hive/flauwy/23wMTpCakBBCoapJV9xBnwEY3fUe72DNVi5qXKB1wv1wrJcPqF5s8ZZt965xwj5ggxqJs.png","https://files.peakd.com/file/peakd-hive/flauwy/23tbK713oTmeQrys9bd3VW1HGEsQo8LDnMxuVxukwv7G7UAgSq4fzdHJmG9e5aDvdK9ME.PNG","https://files.peakd.com/file/peakd-hive/flauwy/23tGVqXUHFzx2egErSsC8kWHYkDJMsj9NK1saGWvw4AhRe6cyaSic9urV3bE9Jx7mCUJM.jpg","https://files.peakd.com/file/peakd-hive/flauwy/23w28xzEVAoUtf24evAVXrFosRi1d1NCVi8mzzXvy9hLYEE86We59EqTGf4VCK8RWJ71i.png","https://files.peakd.com/file/peakd-hive/oneup-cartel/23tvAw3wUSQEFRo61AmzSMfGskUN8BNV2HUrevoLJTbfvFYgTnedv5WeHWCkBHR2rBSeJ.png"]}
created2022-01-21 23:17:39
last_update2022-01-21 23:58:45
depth0
children60
last_payout2022-01-28 23:17:39
cashout_time1969-12-31 23:59:59
total_payout_value26.754 HBD
curator_payout_value39.673 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,172
author_reputation23,167,377,101,986
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries
0.
accountflauwy
weight3,300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,534
net_rshares69,558,162,720,117
author_curate_reward""
vote details (653)
@alente ·
Wow what a great post and it was very timely for me because I have been studying Markdown.
I appreciate you sharing how you do this on hive.
Thanks for all of your great posts
properties (22)
authoralente
permlinkre-oneup-cartel-r7p2o6
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.01.2"}
created2022-02-22 07:12:09
last_update2022-02-22 07:12:09
depth1
children0
last_payout2022-03-01 07:12:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation3,984,955,344,775
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,700,955
net_rshares0
@amirtheawesome1 ·
This is really good. I bookmarked this one. 
properties (22)
authoramirtheawesome1
permlinkre-oneup-cartel-r8f43j
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.02.6"}
created2022-03-08 08:40:15
last_update2022-03-08 08:40:15
depth1
children0
last_payout2022-03-15 08:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation230,128,116,166,108
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,129,295
net_rshares0
@andy-plays ·
$0.47
Thank you for this great post @flauwy ! It is really of great help to improve ones blog posts. I try to improve mine as well, and will try to do everything similar to what you laid out!
But I am still learning, and will still do some mistakes. Especially #tags are a problem. And sometimes it is just habit, that makes it harder to improve the quality of my posts.
Thanks to @ivarbjorn for the great help recently and everyone else of the Cartel who helped me so far. I really appreciate it a lot!

Have an amazing weekend and keep up the amazing work!

Cheers,
@andy-plays 
!LUV
!LOLZ
!gif great work
!hivebits
!PIZZA
!BEER
👍  , , , , , , , , , , , , , , , , ,
properties (23)
authorandy-plays
permlinkre-oneup-cartel-r632p8
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-21 23:31:57
last_update2022-01-21 23:31:57
depth1
children11
last_payout2022-01-28 23:31:57
cashout_time1969-12-31 23:59:59
total_payout_value0.235 HBD
curator_payout_value0.231 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length624
author_reputation11,544,834,255,697
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,766
net_rshares412,105,082,767
author_curate_reward""
vote details (18)
@flauwy ·
$0.02
It's really a pleasure to help the community with cool content and motivated family members who spread the love. !1UP
👍  , ,
properties (23)
authorflauwy
permlinkre-andy-plays-r6330r
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-21 23:38:51
last_update2022-01-21 23:38:51
depth2
children2
last_payout2022-01-28 23:38:51
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation296,259,911,900,510
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,904
net_rshares22,229,688,106
author_curate_reward""
vote details (3)
@andy-plays ·
That is great to hear! And I really have the feeling, that is such a helping and supportive community! Thanks a lot for your support!
Cheers,
@andy-plays 
👍  
properties (23)
authorandy-plays
permlinkre-flauwy-r6336r
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-21 23:42:27
last_update2022-01-21 23:42:27
depth3
children0
last_payout2022-01-28 23:42:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation11,544,834,255,697
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,988
net_rshares415,198,569
author_curate_reward""
vote details (1)
@karmaa13 ·
thanks you for this article ;)
properties (22)
authorkarmaa13
permlinkre-flauwy-kysiouhg
categoryhive-102223
json_metadata{"tags":["splintertalk"],"format":"markdown","canonical_url":"https://www.splintertalk.io/@karmaa13/re-flauwy-kysiouhg","app":"splintertalk/1.0.0"}
created2022-01-24 09:58:48
last_update2022-01-24 09:58:48
depth3
children0
last_payout2022-01-31 09:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation779,965,396,007
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,805,718
net_rshares0
@hivegifbot ·
<center>https://media.tenor.com/images/1352a4ad123afaf3d9f1ae21d837938a/tenor.gif
[Via Tenor](https://tenor.com/)</center>
properties (22)
authorhivegifbot
permlinkre-re-oneup-cartel-r632p8-20220121t233257z
categoryhive-102223
json_metadata"{"app": "beem/0.24.26"}"
created2022-01-21 23:32:57
last_update2022-01-21 23:32:57
depth2
children0
last_payout2022-01-28 23:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation38,192,557,766,504
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,780
net_rshares0
@ivarbjorn ·
$0.04
Thanks for the mention, I was just trying to help, posts can get a lot of upvotes if tagged correctly. And off-tagging can cause some hiccups or even a downvote in your content, and it would be a waste to see good content get downvoted. 
👍  
properties (23)
authorivarbjorn
permlinkre-andy-plays-r633py
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-21 23:54:00
last_update2022-01-21 23:54:00
depth2
children3
last_payout2022-01-28 23:54:00
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length237
author_reputation27,594,648,258,042
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,735,248
net_rshares34,629,700,325
author_curate_reward""
vote details (1)
@andy-plays ·
Thank you! Yeah, you are absolutely right. 
I try to follow the rules. And I think at least regarding the Tokens of the communites you mentioned, it shouldn't happen again. Well, it looks like in my case, sometimes (tagging) less is more.
Thanks for your patience and help, my friend! And thanks for the support and kind words! It is really appreciated!
👍  
properties (23)
authorandy-plays
permlinkre-ivarbjorn-r633x1
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-21 23:58:12
last_update2022-01-21 23:58:12
depth3
children2
last_payout2022-01-28 23:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length353
author_reputation11,544,834,255,697
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,735,329
net_rshares413,574,417
author_curate_reward""
vote details (1)
@lolzbot ·
<div class='pull-right'><center><img src="https://lolztoken.com/wp-content/uploads/2021/11/lolz-fail.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p></center></div>
<p><center><strong>Knock knock...<br>ERROR: Joke failed.</strong><br>@andy-plays, You need more $LOLZ to use this command. The minimum requirement is 16.0 LOLZ.<br>You can get more <a href="https://hive-engine.com/?p=market&t=LOLZ">$LOLZ</a> on HE.</center></p>
properties (22)
authorlolzbot
permlinkre-re-oneup-cartel-r632p8-20220121t233255z
categoryhive-102223
json_metadata"{"app": "beem/0.24.19"}"
created2022-01-21 23:32:57
last_update2022-01-21 23:32:57
depth2
children0
last_payout2022-01-28 23:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length440
author_reputation196,136,182,357,343
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,781
net_rshares0
@luvshares ·
@andy-plays<sub>(1/1)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">H-E tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">connect</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><><</a>
properties (22)
authorluvshares
permlinkre-re-oneup-cartel-r632p8-20220121t233256z
categoryhive-102223
json_metadata"{"app": "beem/0.24.26"}"
created2022-01-21 23:32:57
last_update2022-01-21 23:32:57
depth2
children0
last_payout2022-01-28 23:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length498
author_reputation5,651,102,754,153
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,778
net_rshares0
@pizzabot ·
@andy-plays, sorry! You need more to stake more $PIZZA to use this command.

The minimum requirement is 20.0 PIZZA staked.

More $PIZZA is available from [Hive-Engine](https://hive-engine.com/?p=market&t=PIZZA) or [Tribaldex](https://tribaldex.com/trade/PIZZA)
properties (22)
authorpizzabot
permlinkre-re-oneup-cartel-r632p8-20220121t233255z
categoryhive-102223
json_metadata"{"app": "beem/0.24.26"}"
created2022-01-21 23:32:57
last_update2022-01-21 23:32:57
depth2
children0
last_payout2022-01-28 23:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length261
author_reputation7,607,704,952,650
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,777
net_rshares0
@banzafahra ·
$0.04
Thank you for this post. For some of the styles and layouts I was wondering how to do it and didn't know where to look it up! Awesome job!
Where do we approach you for being part of the cartel? @flauwy?
👍  
properties (23)
authorbanzafahra
permlinkre-oneup-cartel-r641o3
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 12:07:15
last_update2022-01-22 12:07:15
depth1
children2
last_payout2022-01-29 12:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation3,454,082,898,569
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,747,478
net_rshares70,488,901,067
author_curate_reward""
vote details (1)
@flauwy ·
Join our Discord that is linked at the bottom of the post, where you'll find a FAQ and many helpful people. :)
👍  
properties (23)
authorflauwy
permlinkre-banzafahra-r645pa
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 13:34:21
last_update2022-01-22 13:34:21
depth2
children1
last_payout2022-01-29 13:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation296,259,911,900,510
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,749,277
net_rshares2,030,611,952
author_curate_reward""
vote details (1)
@banzafahra ·
Thanks, I'll check it out 
properties (22)
authorbanzafahra
permlinkre-flauwy-2022122t15831413z
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"ecency/3.0.24-mobile","format":"markdown+html"}
created2022-01-22 14:08:30
last_update2022-01-22 14:08:30
depth3
children0
last_payout2022-01-29 14:08:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation3,454,082,898,569
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,749,941
net_rshares0
@bteim ·
$0.04
This is a really useful post, I didn't even know about snippets before!  Thank you so much for writing about them 😁
👍  
properties (23)
authorbteim
permlinkre-oneup-cartel-r63hjr
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 04:52:39
last_update2022-01-22 04:52:39
depth1
children0
last_payout2022-01-29 04:52:39
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation166,183,285,137,508
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,740,431
net_rshares35,430,163,823
author_curate_reward""
vote details (1)
@cryptomajika ·
This little guide is going to come in handy for me!
Many thanks. Bookmarked.
!PIZZA
properties (22)
authorcryptomajika
permlinkre-oneup-cartel-kyqbytdr
categoryhive-102223
json_metadata{"tags":["oneup"],"format":"markdown","canonical_url":"https://www.1up.zone/@cryptomajika/re-oneup-cartel-kyqbytdr","app":"oneup/1.0.0"}
created2022-01-22 21:15:03
last_update2022-01-22 21:15:03
depth1
children0
last_payout2022-01-29 21:15:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation489,390,219,020
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,759,943
net_rshares0
@curation-cartel · (edited)
![Don-1UP-250.png](https://files.peakd.com/file/peakd-hive/curation-cartel/23w2HCCtNKoFyTB2n9EG5oCga1NgbcFGm55VetSArE8g89JjfqSJeKFMJq9afuXBL3MvX.png) |  <div class="phishy"><u><h4>You have received a __1UP__ from @flauwy!</h4></u></div> The following @oneup-cartel family members upvoted your post:<br> __<code>@oneup-curator, @monster-curator, @leo-curator, @ctp-curator, @neoxag-curator, @pal-curator, @pob-curator, @vyb-curator, @bee-curator</code>__  <br>_And look, they brought !PIZZA 🍕_ 
-|-

<sup>Delegate your tribe tokens to our Cartel curation accounts and earn daily rewards. Join the family on [Discord](https://discord.gg/H5mxvTrexm).</sup>
properties (22)
authorcuration-cartel
permlinkre-cartel-post-framework-how-to-create-stunning-posts-for-hive-communities-20220121t234859z
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-21 23:49:00
last_update2022-01-22 00:00:00
depth1
children0
last_payout2022-01-28 23:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length653
author_reputation1,123,882,653,763
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,735,115
net_rshares0
@discovery-it ·
<div class="pull-left">https://cdn.steemitimages.com/DQmTAn3c753LR7bHCLPo96g9UvRMaPFwaMYn8VQZa85xczC/discovery_logo_colore%20-%20Copia.png</div><br> This post was shared and voted inside the discord by the curators team of <a href="https://discord.gg/cMMp943"> discovery-it</a> <br>Join our community! <a href = "https://hive.blog/trending/hive-193212"> hive-193212</a><br>Discovery-it is also a Witness, vote for us <a href = "https://hivesigner.com/sign/account-witness-vote?witness=discovery-it&approve=true"> here</a>  <br>Delegate to us for passive income. Check our <a href = "https://hive.blog/hive-193212/@discovery-it/delegations-program-80-fee-back"> 80% fee-back Program</a> <hr>
properties (22)
authordiscovery-it
permlinkre-oneup-cartel-k31cuaorqi
categoryhive-102223
json_metadata"{"app": "beem/0.24.26"}"
created2022-01-22 02:11:12
last_update2022-01-22 02:11:12
depth1
children0
last_payout2022-01-29 02:11:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length690
author_reputation67,934,791,322,948
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,737,742
net_rshares0
@dubble ·
$0.03
Great post, thank you very much Flauwy! I didn't even realise snippets were a thing on Peakd, always thought damn! I wish Peakd had the gallery feature like ecency 😅
👍  
properties (23)
authordubble
permlinkre-oneup-cartel-r68hvc
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.01.1"}
created2022-01-24 21:47:36
last_update2022-01-24 21:47:36
depth1
children0
last_payout2022-01-31 21:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation92,921,349,505,926
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,822,044
net_rshares21,487,506,543
author_curate_reward""
vote details (1)
@dynamicrypto ·
$0.04
Amazing post, reblogged and bookmarked!
👍  
properties (23)
authordynamicrypto
permlinkre-oneup-cartel-r63e7q
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 03:40:39
last_update2022-01-22 03:40:39
depth1
children0
last_payout2022-01-29 03:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation250,961,051,346,174
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,739,242
net_rshares35,500,516,911
author_curate_reward""
vote details (1)
@entrepidus ·
$0.20
Snippets.

Snippets, *snippets*, **snippets**, ***snippets***, ***SNIPPETS***!

If you get nothing else from this post, let it be snippets! The ability to create templates on Peakd is already amazing, but snippets give you templates *inside of* templates!

I've honestly been kicking around how best to tackle a post on this subject, but now I can just pass this along, instead. Thanks so much!!!
👍  
properties (23)
authorentrepidus
permlinkre-oneup-cartel-r6359f
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 00:27:00
last_update2022-01-22 00:27:00
depth1
children0
last_payout2022-01-29 00:27:00
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.098 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length396
author_reputation25,517,038,518,446
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,735,936
net_rshares172,840,540,131
author_curate_reward""
vote details (1)
@flauwy ·
Wow, this post took me much longer than I had hoped for. Let me know if anything is missing in here that we use or need. 

!1UP 100 🍄
properties (22)
authorflauwy
permlinkre-oneup-cartel-r6325i
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-21 23:20:06
last_update2022-01-21 23:20:06
depth1
children0
last_payout2022-01-28 23:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation296,259,911,900,510
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,580
net_rshares0
@gratitudemine ·
Great write up, this will go a long way to make the process of putting together a good post much easier. 
properties (22)
authorgratitudemine
permlinkre-oneup-cartel-r95epe
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.03.6"}
created2022-03-22 13:27:36
last_update2022-03-22 13:27:36
depth1
children0
last_payout2022-03-29 13:27:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation648,545,667,159
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,584,992
net_rshares0
@heartbeatonhive ·
Awesome post very helpful information about posting on Hive.
@oneup-cartel 
Much appreciated have the best week😎
!ALIVE 
properties (22)
authorheartbeatonhive
permlinkre-oneup-cartel-r9i371
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.03.9"}
created2022-03-29 10:52:18
last_update2022-03-29 10:52:18
depth1
children1
last_payout2022-04-05 10:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation63,607,863,585,501
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,789,187
net_rshares0
@youarealive ·
<center><p>@oneup-cartel! <b>You Are Alive</b> so I just staked 0.1 <b>$ALIVE</b> to your account on behalf of @heartbeatonhive. <sub>(10/20)</sub></p>
<p>The tip has been paid for by the <a href="https://www.wearealiveand.social/">We Are Alive Tribe</a> through the earnings on @alive.chat, feel free to swing by our daily chat any time you want. <br /> <img src="https://i.imgur.com/p2WXJLn.png"></p></center>
properties (22)
authoryouarealive
permlinkre-re-oneup-cartel-r9i371-20220329t105326z
categoryhive-102223
json_metadata"{"app": "beem/0.24.26"}"
created2022-03-29 10:53:27
last_update2022-03-29 10:53:27
depth2
children0
last_payout2022-04-05 10:53:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length411
author_reputation11,334,267,400,447
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,789,212
net_rshares0
@hivebuzz ·
Congratulations @oneup-cartel! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s):

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@oneup-cartel/upvoted.png?202201211652"></td><td>You received more than 4000 upvotes.<br>Your next target is to reach 4250 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@oneup-cartel) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hivebuzz/@hivebuzz/pum-202201-20"><img src="https://images.hive.blog/64x128/https://i.imgur.com/R2XacsJ.png"></a></td><td><a href="/hivebuzz/@hivebuzz/pum-202201-20">Hive Power Up Month - Feedback from day 20</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
properties (22)
authorhivebuzz
permlinknotify-oneup-cartel-20220121t233442
categoryhive-102223
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-01-21 23:34:42
last_update2022-01-21 23:34:42
depth1
children0
last_payout2022-01-28 23:34:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,135
author_reputation369,427,825,256,044
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,808
net_rshares0
@hivehustlers ·
$0.02
This is another awesome post! Very useful for any Hiver! Heck I learned a few things from it! Certainly reblogging! Keep up the Hustle!
👍  
properties (23)
authorhivehustlers
permlinkre-oneup-cartel-r680xm
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-24 15:41:48
last_update2022-01-24 15:41:48
depth1
children0
last_payout2022-01-31 15:41:48
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation27,440,663,533,034
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,812,684
net_rshares20,847,657,155
author_curate_reward""
vote details (1)
@hollowknightgod ·
$0.04
How did I not know about the Snippets on PeakD. That will save me soooo much time, thanks a lot!

!PGM
!LOL
👍  
properties (23)
authorhollowknightgod
permlinkre-oneup-cartel-r636kl
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 00:55:39
last_update2022-01-22 00:55:39
depth1
children2
last_payout2022-01-29 00:55:39
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation8,283,876,864,776
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,736,495
net_rshares35,851,372,414
author_curate_reward""
vote details (1)
@lolzbot ·
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p></center></div><p><center><strong>I hope Elon Mush never gets invloved in a scandal<br>Elongate could be really drawn out.</strong><br><sub>Credit: <a href="https://peakd.com/@mrhuman88">mrhuman88</a></sub><br>@oneup-cartel, I sent you an <a href="https://hive-engine.com/?p=market&t=LOLZ">$LOLZ</a> on behalf of @hollowknightgod</a><br>Use the <strong>!LOL</strong> or <strong>!LOLZ</strong> command to share a joke and an <strong>$LOLZ</strong>. (1/2)</center></p>
properties (22)
authorlolzbot
permlinkre-re-oneup-cartel-r636kl-20220122t005700z
categoryhive-102223
json_metadata"{"app": "beem/0.24.19"}"
created2022-01-22 00:57:03
last_update2022-01-22 00:57:03
depth2
children0
last_payout2022-01-29 00:57:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length597
author_reputation196,136,182,357,343
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,736,516
net_rshares0
@zottonetoken ·
<center>Sent 0.1 PGM tokens to @oneup-cartel</center>

<center><sub>remaining commands 2</sub></center>

<center>[Buy](https://hive-engine.com/?p=market&t=PGM) and stake 10 PGM token to send 0.1 PGM per day,
100 PGM token to send 0.1 PGM three times per day
500 to send and receive 0.1 PGM five times per day
1000 to send and receive 0.1 PGM ten times per day</center>

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)
properties (22)
authorzottonetoken
permlinkzottonetokenhollowknightgod1642812961240
categoryhive-102223
json_metadata{"tags":[],"app":"hiveblog/0.1","format":"markdown"}
created2022-01-22 00:56:03
last_update2022-01-22 00:56:03
depth2
children0
last_payout2022-01-29 00:56:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,603
author_reputation165,011,033,451
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,736,501
net_rshares0
@iqbaladan ·
$0.02
It's always interesting to read how to make interesting posts on Hive, I must say that I discovered new knowledge in this article, I've seen about Snippets on Peakd but never really knew how to use it, thanks to you for making it even better clear now. Great post.
👍  
properties (23)
authoriqbaladan
permlinkre-oneup-cartel-kys6mm9q
categoryhive-102223
json_metadata{"tags":["splintertalk"],"format":"markdown","canonical_url":"https://www.splintertalk.io/@iqbaladan/re-oneup-cartel-kys6mm9q","app":"splintertalk/1.0.0"}
created2022-01-24 04:21:18
last_update2022-01-24 04:21:18
depth1
children0
last_payout2022-01-31 04:21:18
cashout_time1969-12-31 23:59:59
total_payout_value0.011 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation37,079,058,336,744
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,798,994
net_rshares20,534,767,698
author_curate_reward""
vote details (1)
@japex1226 ·
$0.04
Oh my god! The thing I need the most!!! Thank you for sharing this.
!PGM
👍  
properties (23)
authorjapex1226
permlinkre-oneup-cartel-r63bzo
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 02:52:42
last_update2022-01-22 02:52:42
depth1
children1
last_payout2022-01-29 02:52:42
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation77,444,484,738,205
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,738,465
net_rshares35,637,390,474
author_curate_reward""
vote details (1)
@zottonetoken ·
<center>Sent 0.1 PGM tokens to @japex1226, @oneup-cartel</center>

<center><sub>remaining commands 9</sub></center>

<center>[Buy](https://hive-engine.com/?p=market&t=PGM) and stake 10 PGM token to send 0.1 PGM per day,
100 PGM token to send 0.1 PGM three times per day
500 to send and receive 0.1 PGM five times per day
1000 to send and receive 0.1 PGM ten times per day</center>

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)
properties (22)
authorzottonetoken
permlinkzottonetokenjapex12261642819983160
categoryhive-102223
json_metadata{"tags":[],"app":"hiveblog/0.1","format":"markdown"}
created2022-01-22 02:53:03
last_update2022-01-22 02:53:03
depth2
children0
last_payout2022-01-29 02:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,615
author_reputation165,011,033,451
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,738,478
net_rshares0
@jimmy.adames ·
WOW!!! This is amazing @spiritsurge 💥 @oneup-cartel 

I came by way of ListNerds and thankfully so. 

Blog post construction and presentation tips at it's finest.

![untitled.gif](https://media.tenor.com/images/196f5881f686de891f0727031e4bcbe6/tenor.gif)
👍  
properties (23)
authorjimmy.adames
permlinkre-oneup-cartel-r7dmq3
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.01.2"}
created2022-02-16 02:54:03
last_update2022-02-16 02:54:03
depth1
children1
last_payout2022-02-23 02:54:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation321,388,122,884,438
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,510,326
net_rshares568,809,743
author_curate_reward""
vote details (1)
@spiritsurge ·
$0.03
I am glad you think so Jimmy!! Like you we also work very hard on our posts :)
👍  
properties (23)
authorspiritsurge
permlinkre-jimmyadames-r7e7k2
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.01.2"}
created2022-02-16 10:24:09
last_update2022-02-16 10:24:09
depth2
children0
last_payout2022-02-23 10:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation7,531,369,142,603
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,519,063
net_rshares28,702,276,491
author_curate_reward""
vote details (1)
@libertycrypto27 ·
$0.04
This is a really helpful post!
!discovery 20
@tipu curate
👍  
properties (23)
authorlibertycrypto27
permlinkre-oneup-cartel-2022122t3114171z
categoryhive-102223
json_metadata{"tags":["cartel","oneup","leofinance","ctp","pob","vyb","neoxian","palnet","hive-engine","spt"],"app":"ecency/3.0.20-vision","format":"markdown+html"}
created2022-01-22 02:10:57
last_update2022-01-22 02:10:57
depth1
children1
last_payout2022-01-29 02:10:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation2,024,441,646,485,070
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,737,737
net_rshares35,708,408,661
author_curate_reward""
vote details (1)
@tipu ·
<a href="https://tipu.online/hive_curator?libertycrypto27" target="_blank">Upvoted  &#128076;</a> (Mana: 50/70) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-oneup-cartel-2022122t3114171z-20220122t021103z
categoryhive-102223
json_metadata"{"app": "beem/0.24.26"}"
created2022-01-22 02:11:03
last_update2022-01-22 02:11:03
depth2
children0
last_payout2022-01-29 02:11:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation55,938,686,792,287
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,737,740
net_rshares0
@lisamgentile1961 ·
This is a great tutorial for how to create great looking and well written posts that will grab the attention of other readers in the community. Your posts are always very well done. 
properties (22)
authorlisamgentile1961
permlinkre-oneup-cartel-r7irs9
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.01.2"}
created2022-02-18 21:31:24
last_update2022-02-18 21:31:24
depth1
children0
last_payout2022-02-25 21:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation123,968,441,883,375
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,598,908
net_rshares0
@lisamgentile1961 ·
This is a very helpful post with the markdown codes and instructions for how to save them. Where do you find text divider images to use? I always wondered how those tables were created. So thanks for that too.
properties (22)
authorlisamgentile1961
permlinkre-oneup-cartel-r7terj
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.02.6"}
created2022-02-24 15:23:57
last_update2022-02-24 15:23:57
depth1
children0
last_payout2022-03-03 15:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation123,968,441,883,375
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,773,675
net_rshares0
@magnacarta ·
I'm always on the lookout for Markdown guides made speficially fo use in the Hive ecosystem.  Thanks for taking time to publish this guide.

When it comes to images, is there a way using Markdown to specify width and height values, or would I need to fall back on the <code>\<img\></code> element from HTML for something that specific?
properties (22)
authormagnacarta
permlinkre-oneup-cartel-2022122t175542277z
categoryhive-102223
json_metadata{"tags":["cartel","oneup","leofinance","ctp","pob","vyb","neoxian","palnet","hive-engine","spt"],"app":"ecency/3.0.20-vision","format":"markdown+html"}
created2022-01-22 22:55:42
last_update2022-01-22 22:55:42
depth1
children0
last_payout2022-01-29 22:55:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length335
author_reputation74,239,147,617,935
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,761,915
net_rshares0
@mightyrocklee ·
$0.04
This is a very helpful post. Thanks for the hints. !LUV
👍  
properties (23)
authormightyrocklee
permlinkre-oneup-cartel-kypg0398
categoryhive-102223
json_metadata{"tags":["splintertalk"],"format":"markdown","canonical_url":"https://www.splintertalk.io/@mightyrocklee/re-oneup-cartel-kypg0398","app":"splintertalk/1.0.0"}
created2022-01-22 06:20:12
last_update2022-01-22 06:20:12
depth1
children0
last_payout2022-01-29 06:20:12
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation108,040,847,521,868
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,741,696
net_rshares35,359,702,125
author_curate_reward""
vote details (1)
@optout ·
Thank you for this.  I needed some instruction on writing.  
👍  
properties (23)
authoroptout
permlinkre-oneup-cartel-kyxherpi
categoryhive-102223
json_metadata{"tags":["oneup"],"format":"markdown","canonical_url":"https://www.1up.zone/@optout/re-oneup-cartel-kyxherpi","app":"oneup/1.0.0"}
created2022-01-27 21:21:48
last_update2022-01-27 21:21:48
depth1
children0
last_payout2022-02-03 21:21:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation7,444,676,433,797
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,908,784
net_rshares124,110,677
author_curate_reward""
vote details (1)
@pizzabot · (edited)
RE: Cartel Post Framework: How To Create Stunning Posts For HIVE Communities
<center>PIZZA! PIZZA! PIZZA! 


PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments:
@torran<sub>(1/5)</sub> tipped @oneup-cartel (x1)
tokenizedsociety tipped oneup-cartel (x1)
wanderingmoon tipped oneup-cartel (x1)


<sub>Join us in <a href="https://discord.gg/hivepizza">Discord</a>!</sub></center>
properties (22)
authorpizzabot
permlinkre-cartel-post-framework-how-to-create-stunning-posts-for-hive-communities-20220121t234321z
categoryhive-102223
json_metadata"{"app": "beem/0.24.26"}"
created2022-01-21 23:43:21
last_update2022-01-23 15:10:45
depth1
children0
last_payout2022-01-28 23:43:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length320
author_reputation7,607,704,952,650
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,735,005
net_rshares0
@proto26 ·
$0.02
The only part my pea brain couldn't grasp was the tables part... This is a great resource though! 
👍  ,
properties (23)
authorproto26
permlinkre-oneup-cartel-r6agm2
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.01.2"}
created2022-01-25 23:15:42
last_update2022-01-25 23:15:42
depth1
children0
last_payout2022-02-01 23:15:42
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation59,133,837,917,611
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,853,719
net_rshares21,165,019,345
author_curate_reward""
vote details (2)
@rcaine ·
Tagging is import to collect upvotes. Good tags get your post in front of interested people.
properties (22)
authorrcaine
permlinkre-oneup-cartel-r8skme
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.02.6"}
created2022-03-15 15:06:15
last_update2022-03-15 15:06:15
depth1
children0
last_payout2022-03-22 15:06:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation71,492,578,717,582
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,362,116
net_rshares0
@rcaine ·
Another one of your excellent detailed reviews of a game. Thanks
properties (22)
authorrcaine
permlinkre-oneup-cartel-r95os5
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.03.7"}
created2022-03-22 17:04:54
last_update2022-03-22 17:04:54
depth1
children0
last_payout2022-03-29 17:04:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation71,492,578,717,582
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,590,042
net_rshares0
@shubhwaj ·
Simply amazing. It has all the most important things and some really nice tips for every Hive user. Bookmarked. Thanks for sharing. :)
properties (22)
authorshubhwaj
permlinkre-oneup-cartel-kyq83fgj
categoryhive-102223
json_metadata{"tags":["hive-engine"],"format":"markdown","canonical_url":"https://tribaldex.blog/@shubhwaj/re-oneup-cartel-kyq83fgj","app":"tribaldex/1.0.0"}
created2022-01-22 19:26:42
last_update2022-01-22 19:26:42
depth1
children0
last_payout2022-01-29 19:26:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation15,981,250,845,185
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,757,678
net_rshares0
@sirsmokesalot96 ·
How do we join the cartel? I would be interested in joining and buying some Cartel tokens. Dividends sound amazing keep up the good work!
properties (22)
authorsirsmokesalot96
permlinkre-oneup-cartel-kz27enth
categoryhive-102223
json_metadata{"tags":["oneup"],"format":"markdown","canonical_url":"https://www.1up.zone/@sirsmokesalot96/re-oneup-cartel-kz27enth","app":"oneup/1.0.0"}
created2022-01-31 04:41:00
last_update2022-01-31 04:41:00
depth1
children0
last_payout2022-02-07 04:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation18,469,086,458,058
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,003,877
net_rshares0
@skylinebuds ·
$0.04
Dam great post, I had no clue about snippets on peakd
👍  
properties (23)
authorskylinebuds
permlinkre-oneup-cartel-r637d9
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2021.12.1"}
created2022-01-22 01:12:36
last_update2022-01-22 01:12:36
depth1
children0
last_payout2022-01-29 01:12:36
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation106,430,127,772,462
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,736,765
net_rshares35,779,818,984
author_curate_reward""
vote details (1)
@thebalanceguy ·
Really useful post, thanks for sharing all this info @fluawy  & @oneup-cartel 
It's definitely going to help me up my posting game.
!hivebits 
properties (22)
authorthebalanceguy
permlinkre-oneup-cartel-ra86t1
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.04.4"}
created2022-04-12 13:07:24
last_update2022-04-12 13:07:24
depth1
children0
last_payout2022-04-19 13:07:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation8,422,660,186,394
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id112,228,942
net_rshares0
@thebalanceguy ·
Really useful post, thanks for sharing all this info @fluawy  & @oneup-cartel 
It's definitely going to help me up my posting game.
!hivebits 
properties (22)
authorthebalanceguy
permlinkre-oneup-cartel-ra8gge
categoryhive-102223
json_metadata{"tags":["hive-102223"],"app":"peakd/2022.04.4"}
created2022-04-12 15:33:06
last_update2022-04-12 15:33:06
depth1
children0
last_payout2022-04-19 15:33:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation8,422,660,186,394
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id112,232,544
net_rshares0
@tokenizedsociety ·
Oops, almost forgot that I wanted you to have some !PIZZA to thank you for this great post :)

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@tokenizedsociety/re-oneup-cartel-56xnvz)
properties (22)
authortokenizedsociety
permlinkre-oneup-cartel-56xnvz
categoryhive-102223
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-102223","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@tokenizedsociety/re-oneup-cartel-56xnvz"}
created2022-01-21 23:42:06
last_update2022-01-21 23:42:06
depth1
children0
last_payout2022-01-28 23:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation129,995,294,823,411
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,980
net_rshares0
@tokenizedsociety ·
$0.08
Great starting point to anyone interested in improving the quality of their writing. Thanks for putting up the effort and sharing it with us.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@tokenizedsociety/re-oneup-cartel-8h3yc)
👍  
properties (23)
authortokenizedsociety
permlinkre-oneup-cartel-8h3yc
categoryhive-102223
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-102223","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@tokenizedsociety/re-oneup-cartel-8h3yc"}
created2022-01-21 23:41:33
last_update2022-01-21 23:41:33
depth1
children0
last_payout2022-01-28 23:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length247
author_reputation129,995,294,823,411
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,734,972
net_rshares69,180,154,171
author_curate_reward""
vote details (1)
@torran ·
Finally! I've been looking for how to do that pull-left/right trick. Awesome write-up! Thanks!

!PIZZA
!BEER
!PGM
properties (22)
authortorran
permlinkre-oneup-cartel-kyrecpct
categoryhive-102223
json_metadata{"tags":["oneup"],"format":"markdown","canonical_url":"https://www.1up.zone/@torran/re-oneup-cartel-kyrecpct","app":"oneup/1.0.0"}
created2022-01-23 15:09:33
last_update2022-01-23 15:09:33
depth1
children1
last_payout2022-01-30 15:09:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation8,297,298,349,285
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,781,158
net_rshares0
@zottonetoken ·
<center>Sent 0.1 PGM tokens to @oneup-cartel</center>

<center><sub>remaining commands 2</sub></center>

<center>[Buy](https://hive-engine.com/?p=market&t=PGM) and stake 10 PGM token to send 0.1 PGM per day,
100 PGM token to send 0.1 PGM three times per day
500 to send and receive 0.1 PGM five times per day
1000 to send and receive 0.1 PGM ten times per day</center>

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)
properties (22)
authorzottonetoken
permlinkzottonetokentorran1642950588220
categoryhive-102223
json_metadata{"tags":[],"app":"hiveblog/0.1","format":"markdown"}
created2022-01-23 15:09:48
last_update2022-01-23 15:09:48
depth2
children0
last_payout2022-01-30 15:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,603
author_reputation165,011,033,451
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,781,165
net_rshares0
@wanderingmoon ·
$0.04
I don't usually upvote posts with such a large possible payout but this was informative, about one of my favorite projects and lastly it was written by @Flauwy.
!PIZZA
👍  
properties (23)
authorwanderingmoon
permlinkre-oneup-cartel-kyp94f57
categoryhive-102223
json_metadata{"tags":["oneup"],"format":"markdown","canonical_url":"https://www.1up.zone/@wanderingmoon/re-oneup-cartel-kyp94f57","app":"oneup/1.0.0"}
created2022-01-22 03:07:42
last_update2022-01-22 03:07:42
depth1
children0
last_payout2022-01-29 03:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation20,953,490,059,949
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,738,734
net_rshares35,566,514,323
author_curate_reward""
vote details (1)
@zanthu ·
Thank yo so much.
👍  
properties (23)
authorzanthu
permlinkre-oneup-cartel-kyyqrr55
categoryhive-102223
json_metadata{"tags":["splintertalk"],"format":"markdown","canonical_url":"https://www.splintertalk.io/@zanthu/re-oneup-cartel-kyyqrr55","app":"splintertalk/1.0.0"}
created2022-01-28 18:31:51
last_update2022-01-28 18:31:51
depth1
children0
last_payout2022-02-04 18:31:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation9,525,568
root_title"Cartel Post Framework: How To Create Stunning Posts For HIVE Communities"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,934,394
net_rshares0
author_curate_reward""
vote details (1)