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

Context-Aware Sub-Menu Rendering #52

Open
wants to merge 4 commits into
base: master
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
14 changes: 13 additions & 1 deletion .github/src/config/_default/menus.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@
# url = "site/notice"
# weight = 100

[[context]]
name = "References"
url = "method/asm"
identifier = "bibtex-references"
weight = 1

# [[context]]
# name = "Sub-Menu Entry"
# url = "path/of/page"
# identifier = "relative/or/absolute/path/to/other/page"
# weight = 2

[[conference]]
name = "Home"
url = "."
Expand Down Expand Up @@ -134,4 +146,4 @@
[[skyline]]
name = "bergamo"
url = "../.."
weight = 100
weight = 100
7 changes: 5 additions & 2 deletions .github/src/content/project/abz23.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ categories: []

featured: false
---
This document presents the case study for ABZ 2023 conference. The case study introduces a safety critical interactive system called
AMAN (Arrival MANager) which is a partly-autonomous scheduler of landing sequences of aircraft in airports. This interactive systems interleaves Air Traffic Controllers activities with automation in AMAN. While some AMAN systems are currently deployed in airports, we consider here only a subset of functions which represent a challenge in modelling and verification.

This document presents the case study for ABZ 2023 conference.
The case study introduces a safety critical interactive system called AMAN (Arrival MANager) which is a partly-autonomous scheduler of landing sequences of aircraft in airports.
This interactive systems interleaves Air Traffic Controllers activities with automation in AMAN.
While some AMAN systems are currently deployed in airports, we consider here only a subset of functions which represent a challenge in modelling and verification.
33 changes: 33 additions & 0 deletions .github/src/layouts/partials/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,36 @@

</div><!-- /.container -->
</nav>

{{- if .Site.Menus.context }}
{{ $page := trim $.Page.RelPermalink "/"}}
<style>
div.nav1 ul li
{
text-align: center;
display:inline;
padding: 10px;
margin: 10px;
list-style-type: none;
line-height: 2em;
background-color: #F0F0F0;
}
</style>
<div class="universal-wrapper nav1">
<div style="text-align: left;">
<ul class="">
{{- range .Site.Menus.context }}
{{- if .Name }}
{{ if eq .URL $page }}
<a style="" href="{{ .Identifier }}">
<li class="">
<span class="">{{ .Name }}</span>
</li>
</a>
{{- end }}
{{- end }}
{{- end }}
</ul>
</div>
</div>
{{- end }}