Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hifis.net
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HIFIS
Overall
hifis.net
Commits
52146231
Commit
52146231
authored
4 years ago
by
Uwe Jandt (DESY, HIFIS)
Browse files
Options
Downloads
Patches
Plain Diff
Copies roadmap.html from software.hifis.net
parent
5029fa65
No related branches found
Branches containing commit
No related tags found
1 merge request
!25
Resolve "Add Roadmap"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
_layouts/roadmap.html
+58
-0
58 additions, 0 deletions
_layouts/roadmap.html
with
58 additions
and
0 deletions
_layouts/roadmap.html
0 → 100644
+
58
−
0
View file @
52146231
{% include top.html %}
<body>
{% include header.html %}
<main>
{% include title_image.html%}
{% assign sorted_roadmap = site.roadmap | sort: "date" %}
{% assign service_names = "Education and Training,Consulting Services,Technology Services,Communities" | split: "," %}
{% assign unique_dates = sorted_roadmap | map: "date" | uniq | sort %}
{% assign year = "1999" %}
{% assign did_first_section = false %}
<section>
<div
class=
"timeline"
>
{% for date_item in unique_dates %}
{% assign sorted_roadmap_by_date = sorted_roadmap | where_exp: "roadmap", "roadmap.date == date_item" %}
{% assign newyear = date_item | date: "%Y" %}
{% if newyear != year %}
{% assign year = newyear %}
<div
class=
"roadmap-year"
>
{{ newyear }}
</div>
{% endif %}
<div
class=
"roadmap-month"
>
<div
class=
"timeline-bubble"
></div>
<div
class=
"month-text"
>
{{ date_item | date: "%B %Y" }}
</div>
</div>
<div
class=
"roadmap-item"
>
{% for roadmap_item in sorted_roadmap_by_date %}
{% assign service_short = roadmap_item.service | capitalize %}
<article>
{% for service_name in service_names %}
{% if service_name contains service_short %}
<div
class=
"service_name"
>
{{ service_name }}
</div>
{% endif %}
{% endfor %}
<p>
{{ roadmap_item.content | markdownify }}
</p>
</article>
{% endfor %}
</div>
{% endfor %}
</div>
</section>
</main>
{% include footer.html %}
</body>
</html>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment