Skip to content

Commit 58c0436

Browse files
committed
feat: adding donation button
1 parent 396ca67 commit 58c0436

14 files changed

+79
-87
lines changed

.github/ISSUE_TEMPLATE/create_css_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_java_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_javascript_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_maths_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_php_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_physics_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_python_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_ruby_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_rust_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.github/ISSUE_TEMPLATE/create_zig_story.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ body:
2626
attributes:
2727
label: A demo/repos link
2828
placeholder: 'e.g.: https://github.com.com/username/my-repos'
29+
- type: input
30+
id: link
31+
attributes:
32+
label: PayPal Link for Donation Button
33+
placeholder: 'e.g.: https://www.paypal.me/your-paypal-profile-username'

.liquidrc

Lines changed: 0 additions & 67 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"comments": "off",
66
"strings": "off"
77
},
8-
"editor.formatOnSave": true,
8+
"editor.formatOnSave": false,
99
"editor.wordWrap": "on",
1010
"editor.renderWhitespace": "all",
1111
"editor.acceptSuggestionOnEnter": "off"

_layouts/post.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ <h1>{{ page.title }}</h1>
1010
At: {{ page.created_at | date: "%Y-%m-%d %H:%M" }} &mdash; Language: <strong>{{ page.language }}</strong></span>
1111
</div>
1212

13-
{{ content | markdownify }}
13+
{{ content }}
14+
15+
{% if page.paypal_donation != nil %}
16+
<div style="text-align: center;margin: 10px auto;">
17+
<a href="https://www.paypal.me/{{ page.paypal_donation }}" target="_blank">
18+
<img src="https://img.shields.io/badge/Say%20Thank%20You!-Buy%20{{page.author}}%20a%20Coffee-blue?style=for-the-badge&logo=paypal" alt="Donation Button" />
19+
</a>
20+
</div>
21+
{% endif %}
1422

1523
<div class="shareon">
1624
<strong>Share this story</strong>

_stories/javascript/react-table-sever-side-pagination-search-sortorder.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
---
2-
layout: post
3-
title: React Table - Sever Side Pagination, Search, Sort/Order
4-
author: darkterminal
5-
created_at: 2023-02-17T11:52:52Z
6-
language: javascript
7-
---
8-
9-
### Metaphore Name
10-
11-
React Table - Sever Side Pagination, Search, Sort/Order
12-
13-
### Share your metaphore story!
14-
1+
---
2+
layout: post
3+
title: React Table - Sever Side Pagination, Search, Sort/Order
4+
author: darkterminal
5+
created_at: 2023-02-17T11:52:52Z
6+
language: javascript
7+
paypal_donation: lazarusalhambra
8+
---
9+
10+
### Metaphore Name
11+
12+
React Table - Sever Side Pagination, Search, Sort/Order
13+
14+
### Share your metaphore story!
15+
1516
![React-Table-Sever-Side-Pagination-Search-Sort-Order](https://user-images.githubusercontent.com/32319439/219619614-22efc4aa-f490-4f58-995e-2894fed2726c.gif)
1617

1718
## TLDR
@@ -650,8 +651,8 @@ his code sets up a router for an endpoint that returns a datatable of roles. The
650651

651652
The `formatResponse` function is used to format the response into a standard structure. It takes four parameters: type (a string that indicates the type of response), message (a string that provides additional details about the response), data (the data to be included in the response), and pagination (an optional object that contains pagination information). It returns an object that includes the four parameters.
652653

653-
Fiuh!!!! that's it... no puncline...
654-
655-
### A demo/repos link
656-
654+
Fiuh!!!! that's it... no puncline...
655+
656+
### A demo/repos link
657+
657658
_No response_

0 commit comments

Comments
 (0)