Add donations
This commit is contained in:
parent
0f96b93532
commit
d5f478b3c6
36
assets/scss/donate.scss
Normal file
36
assets/scss/donate.scss
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
@import "../../themes/vanilla/assets/scss/mixins.scss";
|
||||||
|
|
||||||
|
.donation-methods {
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
border-spacing: 0 0.5rem;
|
||||||
|
|
||||||
|
td {
|
||||||
|
padding: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
@include bordered-block;
|
||||||
|
text-align: right;
|
||||||
|
border-right: none;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
padding-left: 0.5em;
|
||||||
|
padding-right: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
@include bordered-block;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: none;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,8 @@
|
||||||
---
|
---
|
||||||
title: About
|
title: About
|
||||||
---
|
---
|
||||||
|
{{< donate_css >}}
|
||||||
|
|
||||||
I'm Daniel, a Computer Science student currently working towards my Master's Degree at Oregon State University.
|
I'm Daniel, a Computer Science student currently working towards my Master's Degree at Oregon State University.
|
||||||
Due to my initial interest in calculators and compilers, I got involved in the Programming Language Theory research
|
Due to my initial interest in calculators and compilers, I got involved in the Programming Language Theory research
|
||||||
group, gaining same experience in formal verification, domain specific language, and explainable computing.
|
group, gaining same experience in formal verification, domain specific language, and explainable computing.
|
||||||
|
@ -28,3 +30,14 @@ without any CSS.
|
||||||
* __Source code__: This blog is open source, but not on GitHub. Instead,
|
* __Source code__: This blog is open source, but not on GitHub. Instead,
|
||||||
you can find the code on my [Gitea instance](https://dev.danilafe.com/Web-Projects/blog-static).
|
you can find the code on my [Gitea instance](https://dev.danilafe.com/Web-Projects/blog-static).
|
||||||
If you use this code for your own site, I would prefer that you don't copy the theme.
|
If you use this code for your own site, I would prefer that you don't copy the theme.
|
||||||
|
|
||||||
|
### Donate
|
||||||
|
I don't run ads, nor do I profit from writing anything on here. I have no trouble paying for hosting,
|
||||||
|
and I write my articles voluntarily, for my own enjoyment. However, if you found something particularly
|
||||||
|
helpful on here, and would like to buy me a cup of coffee or help host the site, you can donate using
|
||||||
|
the method(s) below.
|
||||||
|
|
||||||
|
{{< donation_methods >}}
|
||||||
|
{{< donation_method "Bitcoin" "1BbXPZhdzv4xHq5LYhme3xBiUsHw5fmafd" >}}
|
||||||
|
{{< donation_method "Ethereum" "0xd111E49344bEC80570e68EE0A00b87B1EFcb5D56" >}}
|
||||||
|
{{< /donation_methods >}}
|
||||||
|
|
2
layouts/shortcodes/donate_css.html
Normal file
2
layouts/shortcodes/donate_css.html
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
{{ $style := resources.Get "scss/donate.scss" | resources.ToCSS | resources.Minify }}
|
||||||
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
4
layouts/shortcodes/donation_method.html
Normal file
4
layouts/shortcodes/donation_method.html
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Get 0 }}</td>
|
||||||
|
<td><code>{{ .Get 1 }}</code></td>
|
||||||
|
</tr>
|
3
layouts/shortcodes/donation_methods.html
Normal file
3
layouts/shortcodes/donation_methods.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<table class="donation-methods">
|
||||||
|
{{ .Inner }}
|
||||||
|
</table>
|
Loading…
Reference in New Issue
Block a user