Skip to content

GitHub issue page link #103

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion config/_default/params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ social:
url: "https://twitter.com/bogazici_cmpe"
weight: 30
- name: "GitHub"
icon: "git"
icon: "github"
url: "https://github.com/bouncmpe"
weight: 20

Expand Down
15 changes: 15 additions & 0 deletions i18n/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,18 @@ building-head:

under-construction-warning:
other: The information on this page is under construction.

edit-page-link:
other: Click here to edit this page on GitHub.

issue-page:
other: If you have any ideas, issues, or recommendations, please open an issue on GitHub.

boun-page:
other: Boğaziçi University

library-page:
other: Boğaziçi University Library

research-page:
other: Boğaziçi University Research Portal
14 changes: 14 additions & 0 deletions i18n/tr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,17 @@ languageSwitcherLabel:
toc:
other: İçindekiler

edit-page-link:
other: Bu sayfadaki içeriği düzenlemek için buraya tıklayın.

issue-page:
other: Herhangi bir fikriniz, sorununuz veya tavsiyeniz varsa, lütfen GitHub sayfamızda bir issue açın.

boun-page:
other: Boğaziçi Üniversitesi

library-page:
other: Boğaziçi Üniversitesi Kütüphane

research-page:
other: Boğaziçi Üniversitesi Araştırma
68 changes: 56 additions & 12 deletions layouts/partials/footer/footer.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<footer class="container footer text-center p-4">
<footer class="container footer text-center text-md-start p-4">
<div class="row">
{{ range site.Menus.footer }}
<div class="col-12 col-md-3 mb-3 d-none d-lg-block">
Expand All @@ -13,20 +13,64 @@ <h5 class="mb-4">{{- .Name -}}</h5>
</div>
{{ end }}
</div>
<div class="d-flex flex-column flex-sm-row justify-content-between py-4 my-4 border-top ">
<p>{{ replace site.Copyright "{year}" now.Year }}</p>
<ul class="list-unstyled d-flex">
{{range site.Params.social }}
<li class="ms-3">
<a href="{{- .url -}}">
<img src="/icons/{{ .icon }}.svg" alt="{{- .identifier -}}" width="24"
height="24">

<!-- GitHub Issue Link -->
<div class="d-flex flex-column py-1">
<div class="row mt-3 small">
<div class="col d-flex flex-column flex-sm-row justify-content-between">
<a href="https://github.com/bouncmpe/bouncmpe.github.io/issues" class="nav-link link">
{{ i18n "issue-page" }}
</a>
</li>
{{ end }}
</ul>

<div>
<ul class="list-unstyled ms-auto">
<li><a href="https://bogazici.edu.tr/" class="nav-link p-0 link">{{ i18n "boun-page" }}</a></li>
<li><a href="https://library.bogazici.edu.tr/" class="nav-link p-0 link">{{ i18n "library-page" }}</a></li>
<li><a href="https://arastirma.bogazici.edu.tr/" class="nav-link p-0 link">{{ i18n "research-page" }}</a></li>
</ul>
</div>
</div>
</div>
</div>
<hr>

<!-- Footer Bottom Section -->
<div class="d-flex flex-column py-2">
<div class="row">
<div class="col d-flex flex-column flex-sm-row justify-content-between align-items-center">
<!-- Copyright -->
<p class="mb-0 text-muted small">
{{ replace site.Copyright "{year}" now.Year }}
</p>

<!-- Social Links -->
<ul class="list-unstyled d-flex mb-0">
{{ range site.Params.social }}
<li class="ms-3">
<a href="{{- .url -}}" target="_blank" aria-label="{{- .identifier -}}">
<img src="/icons/{{ .icon }}.svg" alt="{{- .identifier -}}" width="24" height="24" class="opacity-75 hover-opacity-100">
</a>
</li>
{{ end }}
</ul>
</div>
</div>

</div>

<!-- Optional Mermaid Integration -->
{{ if .Params.hasMermaid }}
{{ partial "footer/optional-scripts.html" . }}
{{ end }}
</footer>

<style>
.link {
color: rgba(0, 0, 0, 0.72);
text-decoration: none;
}
.link:hover {
color: rgba(0, 0, 0, 0.72);
text-decoration: underline;
}
</style>