Skip to content

Commit

Permalink
add banner with survey 2024 (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
oraNod authored Oct 7, 2024
1 parent b095d5a commit 6cf7bf7
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sass/_ansible-banner.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.ansible-banner {
background: $pool;
width: 100%;
.ansible-banner-text {
display: flex;
justify-content: center;
text-align: center;
color: $white;
padding-top: 1.2rem;
a {
color: $cyan;
}
}
}
1 change: 1 addition & 0 deletions sass/main.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import "colors";
@import "fonts";
@import "button";
@import "ansible-banner";
@import "docbar";
@import "nav";
@import "page-title";
Expand Down
9 changes: 9 additions & 0 deletions templates/_ansible-banner.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<div class="ansible-banner">
<div class="ansible-banner-text">
<p>
We want to hear from you! Help us gain insights into the state of the
Ansible ecosystem by taking the
<a href="https://www.surveymonkey.com/r/P9Q2SNG" target="_blank">Ansible Project Survey 2024</a>
</p>
</div>
</div>
1 change: 1 addition & 0 deletions templates/_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<body>
{% include "_nav.html" %}
{% include "_docbar.html" %}
{% include "_ansible-banner.html" %}
{% block body %} {% endblock %}
{% include "_footer.html" %}
{% include "_scripts.html" %}
Expand Down

0 comments on commit 6cf7bf7

Please sign in to comment.