Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finished footer #4

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions themes/mainroad/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,10 @@ textarea {
margin-right: 15px;
}

.footer_map_container {
margin-bottom: 10px;
}

/* Media Queries */
@media screen and (max-width: 1475px) {
.container--outer {
Expand Down
17 changes: 12 additions & 5 deletions themes/mainroad/layouts/partials/footer.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<footer class="footer">
<div class="container footer__container flex">
<!-- {{ partial "footer_links.html" . }}
<div class="footer__copyright">
&copy; {{ now.Format "2006" }} {{ .Site.Params.copyright | default .Site.Title }}.
<span class="footer__copyright-credits">{{ T "footer_credits" | safeHTML }}</span>
</div> -->
<div class="footer_headers">
<div class="footer_contact_container">
<p class="footer_contact_header">Contact Info</p>
Expand All @@ -16,6 +11,18 @@
Corvallis, OR 97331<br>
<a href="mailto:[email protected]" style="margin: 0px">[email protected]</a><br>
Phone: 541-737-9900<br>

<div class="footer_map_container">
<a href="https://www.google.com/maps/place/Milne+Computer+Center,+1800+SW+Campus+Way,+Corvallis,+OR+97331">
<img src="https://osuosl.org/images/milne_street.png">
ramereth marked this conversation as resolved.
Show resolved Hide resolved
</a>
</div>

<div>
<a href="https://oregonstate.edu/copyright">Copyright</a>
&copy;2016<br> Oregon State University<br />
ramereth marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://oregonstate.edu/disclaimer">Disclaimer</a>
ramereth marked this conversation as resolved.
Show resolved Hide resolved
</div>
</p>
</div>
</div>
Expand Down