forked from bunkerity/bunkerweb
-
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.
- Loading branch information
Showing
1,027 changed files
with
25,181 additions
and
6,578 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ site/ | |
.idea/ | ||
.vscode/ | ||
__pycache__ | ||
env | ||
env | ||
node_modules | ||
/src/ui/*.txt |
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,42 @@ | ||
<div class="col-xl-3 col-md-6 mb-4"> | ||
<div class="card border-left-primary shadow h-100 py-2"> | ||
<div class="card-body"> | ||
<div class="row no-gutters align-items-center"> | ||
<div class="col mr-2"> | ||
<div | ||
class="text-xs font-weight-bold text-primary text-uppercase mb-1" | ||
> | ||
BunkerWeb version | ||
</div> | ||
{% if check_version %} | ||
<div class="h5 mb-0 font-weight-bold text-gray-800"> | ||
{{ version }} {% if not remote_version %} | ||
<span class="h6 mb-0 text-warning" | ||
>(couldn't fetch remote version)</span | ||
> | ||
{% endif %} | ||
</div> | ||
{% else %} | ||
<div class="h5 mb-0 font-weight-bold"> | ||
<span class="text-warning">{{ version }} (your version)</span> | ||
<i class="fa-solid fa-arrow-right-long"></i> | ||
<span class="text-success">{{ remote_version }} (latest)</span> | ||
</div> | ||
{% endif %} | ||
</div> | ||
{% if not check_version %} | ||
<div class="col-auto"> | ||
<a | ||
href="https://github.com/bunkerity/bunkerweb" | ||
class="btn btn-success" | ||
>Update</a | ||
> | ||
</div> | ||
{% endif %} | ||
<div class="col-auto"> | ||
<i class="fa-solid fa-code-branch fa-2x text-gray-300"></i> | ||
</div> | ||
</div> | ||
</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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<ul class="list-unstyled pages"> | ||
<li> | ||
<a href="https://www.bunkerweb.io" target="_blank">BunkerWeb</a> | ||
</li> | ||
<li> | ||
<a href="https://docs.bunkerweb.io" target="_blank">Documentation</a> | ||
</li> | ||
<li> | ||
<a | ||
href="https://github.com/bunkerity/bunkerweb/blob/master/LICENSE" | ||
target="_blank" | ||
>License</a | ||
> | ||
</li> | ||
<li> | ||
<a href="https://www.bunkerweb.io/privacy-policy" target="_blank" | ||
>Privacy Policy</a | ||
> | ||
</li> | ||
</ul> |
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,36 @@ | ||
<form | ||
action="https://bunkerity.us1.list-manage.com/subscribe/post?u=ec5b1577cf427972b9bd491a6&id=37076d9d67" | ||
method="POST" | ||
class="needs-validation" | ||
id="subscribe-newsletter" | ||
> | ||
<div class="input-group mb-2"> | ||
<input | ||
type="text" | ||
id="newsletter-email" | ||
name="EMAIL" | ||
class="form-control" | ||
placeholder="John.doe@example.com" | ||
pattern="[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-z]{2,}$" | ||
required="" | ||
/> | ||
<button class="btn btn-outline-light" type="submit" formtarget="_blank"> | ||
Subscribe | ||
</button> | ||
</div> | ||
<div class="input-group align-items-center"> | ||
<input | ||
class="col-auto form-check form-switch" | ||
type="checkbox" | ||
id="newsletter-check" | ||
required="" | ||
/> | ||
| ||
<h6 class="col-auto h6 mb-0"> | ||
I've read and agree to the | ||
<a href="https://www.bunkerity.com/privacy-policy/" _target="_blank" | ||
>privacy policy</a | ||
> | ||
</h6> | ||
</div> | ||
</form> |
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,25 @@ | ||
<div class="col-lg-2 footer-social animated fadeInDown"> | ||
<h4>Follow Us</h4> | ||
<ul class="list-unstyled"> | ||
<li> | ||
<a href="https://twitter.com/bunkerity" target="_blank" | ||
><i class="bi bi-twitter" aria-label="Twitter"></i>Twitter</a | ||
> | ||
</li> | ||
<li> | ||
<a href="https://www.linkedin.com/company/bunkerity/" target="_blank" | ||
><i class="bi bi-linkedin" aria-label="LinkedIn"></i>LinkedIn</a | ||
> | ||
</li> | ||
<li> | ||
<a href="https://discord.gg/fTf46FmtyD" target="_blank" | ||
><i class="bi bi-discord" aria-label="Discord"></i>Discord</a | ||
> | ||
</li> | ||
<li> | ||
<a href="https://github.com/bunkerity" target="_blank" | ||
><i class="bi bi-github" aria-label="GitHub"></i>GitHub</a | ||
> | ||
</li> | ||
</ul> | ||
</div> |
Oops, something went wrong.