-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
86aa6ea
commit a4e5b0f
Showing
2 changed files
with
11 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,15 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block footer %} | ||
{{ super() }} | ||
|
||
<style> | ||
#jobs-float { | ||
display: flex; | ||
position: fixed; | ||
bottom: 10px; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
/*background-color: var(--md-primary-fg-color--dark);*/ | ||
background-image: linear-gradient(45deg, #d5479b, #4226aa); | ||
color: var(--md-primary-bg-color); | ||
border-radius: 10px; | ||
padding: 10px 20px; | ||
z-index: 999; | ||
cursor: pointer; | ||
align-items: center; | ||
width: 30%; | ||
justify-content: center; | ||
} | ||
|
||
#jobs-float iframe { | ||
border: 0; | ||
width: 170px; | ||
height: 30px; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.text-container { | ||
font-size: 1rem; | ||
margin-right: 20px; | ||
margin-left: 20px; | ||
text-align: center; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
#jobs-float { | ||
display: none; | ||
} | ||
} | ||
|
||
</style> | ||
|
||
<div id="jobs-float" > | ||
<div class="text-container"> | ||
🤖 <span style="font-weight: bold; padding-right: 1rem; padding-left: 0.5rem;">Zep is Hiring!</span> | ||
<a href="https://apply.workable.com/zep-ai/" target="_blank" style="text-decoration: underline;">Learn More</a> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block announce %} | ||
<div style=" display: flex; justify-content: center; align-items: center;"> | ||
Looking for support and community? Join the Zep Discord! | ||
<a href="https://discord.gg/W8Kw6bsgXQ" style="display: flex; align-items: center; margin-left: 20px;"> | ||
<img src="https://dcbadge.vercel.app/api/server/W8Kw6bsgXQ?style=flat" alt="Zep Discord"/> | ||
<span style="font-weight: 600;">WE'RE HIRING!</span> <span style="margin: 0 10px;">Help us shape the future of LLM app development.</span> | ||
<a href="https://jobs.ashbyhq.com/zep-ai" style="color: white; text-decoration: underline;"> | ||
Learn More | ||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-right" | ||
viewBox="0 0 16 16" style="vertical-align: middle;"> | ||
<path fill-rule="evenodd" | ||
d="M6.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L12.293 8 6.646 2.354a.5.5 0 0 1 0-.708z" /> | ||
</svg> | ||
</a> | ||
</div> | ||
{% endblock %} | ||
{% endblock %} |