-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added links for GitHub, contact, and Buy Me a Coffee
- Loading branch information
Showing
7 changed files
with
51 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div id="email-overlay" class="overlay" onclick="hideOverlay('email-overlay')" hidden> | ||
<div class="card body" onclick="event.stopPropagation()"> | ||
<h2 class="header">Contact</h2> | ||
|
||
<p class="main column" style="gap: 3rem;"> | ||
If you have any questions or would like to leave some feedback, please email <a href="mailto: [email protected]" class="accent">[email protected]</a> | ||
</p> | ||
|
||
<div class="footer row" style="justify-content: space-between;"> | ||
<button class="button" onclick="hideOverlay('email-overlay')">Cancel</button> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
{% if auth_url is not defined %} | ||
<footer class="row"> | ||
<a href="/sign_out" class="button">Sign Out</a> | ||
</footer> | ||
{% endif %} | ||
<footer class="row"> | ||
<a href="https://github.com/bklaing2/autofy" class="button secondary">GitHub</a> | ||
|
||
<a href="https://www.buymeacoffee.com/autofy" class="button secondary" target="_blank">Support the Site</a> | ||
<script | ||
data-name="BMC-Widget" | ||
data-cfasync="false" | ||
src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js" | ||
data-id="autofy" | ||
data-description="Support me on Buy me a coffee!" | ||
data-message="If you want to show support and keep this site ad-free, click here!" | ||
data-color="#4ECCA3" | ||
data-position="Right" | ||
data-x_margin="18" | ||
data-y_margin="18"></script> | ||
|
||
<button class="button secondary" onclick="showOverlay('email-overlay')">Contact</button> | ||
|
||
{% if auth_url is not defined %} | ||
<a href="/sign_out" class="button secondary">Sign Out</a> | ||
{% endif %} | ||
|
||
</footer> | ||
|
||
|
||
{% include 'components/emailOverlay.html' %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters