Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fs-informatik
web
Commits
33a3e95f
Commit
33a3e95f
authored
1 year ago
by
Vincent Manuel Menke
Browse files
Options
Downloads
Patches
Plain Diff
feat: added page desciption and hopfully rm mobile debug
parent
afe58516
No related branches found
No related tags found
No related merge requests found
Pipeline
#198408
passed
1 year ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
assets/js/main.js
+90
-0
90 additions, 0 deletions
assets/js/main.js
config/_default/config.yaml
+1
-2
1 addition, 2 deletions
config/_default/config.yaml
with
91 additions
and
2 deletions
assets/js/main.js
0 → 100644
+
90
−
0
View file @
33a3e95f
/*
Arcana by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
(
function
(
$
)
{
var
$window
=
$
(
window
),
$body
=
$
(
'
body
'
);
// Breakpoints.
breakpoints
({
wide
:
[
'
1281px
'
,
'
1680px
'
],
normal
:
[
'
981px
'
,
'
1280px
'
],
narrow
:
[
'
841px
'
,
'
980px
'
],
narrower
:
[
'
737px
'
,
'
840px
'
],
mobile
:
[
'
481px
'
,
'
736px
'
],
mobilep
:
[
null
,
'
480px
'
]
});
// Play initial animations on page load.
$window
.
on
(
'
load
'
,
function
()
{
window
.
setTimeout
(
function
()
{
$body
.
removeClass
(
'
is-preload
'
);
},
100
);
});
// Dropdowns.
$
(
'
#nav > ul
'
).
dropotron
({
offsetY
:
-
15
,
hoverDelay
:
0
,
alignment
:
'
center
'
});
// Nav.
// Bar.
let
logo
=
$
(
'
#logo
'
)
$
(
'
<div id="titleBar">
'
+
'
<a href="#navPanel" class="toggle"></a>
'
+
'
<span class="title">
'
+
logo
.
html
()
+
'
</span>
'
+
'
</div>
'
)
.
appendTo
(
$body
);
// Toolbox.
let
toolBoxElement
=
'
<div class="toolbox">
'
;
let
multilingual
=
$
(
'
#multilingual
'
);
if
(
multilingual
[
0
]){
toolBoxElement
+=
'
<div class="dropdown">
'
+
multilingual
.
html
()
+
'
</div>
'
;
}
toolBoxElement
+=
'
</div>
'
;
// Panel.
$
(
'
<div id="navPanel">
'
+
'
<nav>
'
+
$
(
'
#nav
'
).
navList
()
+
'
</nav>
'
+
toolBoxElement
+
'
</div>
'
)
.
appendTo
(
$body
)
.
panel
({
delay
:
500
,
hideOnClick
:
true
,
hideOnSwipe
:
true
,
resetScroll
:
true
,
resetForms
:
true
,
side
:
'
left
'
,
target
:
$body
,
visibleClass
:
'
navPanel-visible
'
});
// Dropdown buttons.
$
(
'
a#languageDropdown
'
).
click
(
function
(
e
)
{
$
(
'
ul#languageContent
'
).
toggleClass
(
"
show
"
);
e
.
stopPropagation
();
});
$
(
document
).
click
(
function
()
{
$
(
'
ul#languageContent
'
).
removeClass
(
"
show
"
);
});
})(
jQuery
);
This diff is collapsed.
Click to expand it.
config/_default/config.yaml
+
1
−
2
View file @
33a3e95f
...
@@ -2,7 +2,6 @@ baseURL: https://fbihome.de/
...
@@ -2,7 +2,6 @@ baseURL: https://fbihome.de/
languageCode
:
en-us
languageCode
:
en-us
title
:
FBI h_da
title
:
FBI h_da
theme
:
hugo-arcana
theme
:
hugo-arcana
copyright
:
© Untitled. All rights reserved
defaultContentLanguage
:
de
defaultContentLanguage
:
de
languages
:
languages
:
de
:
de
:
...
@@ -14,7 +13,7 @@ languages:
...
@@ -14,7 +13,7 @@ languages:
taxonomies
:
taxonomies
:
tag
:
tags
tag
:
tags
params
:
params
:
description
:
Eine responsive Webseiten-Vorlage im Business- und Unternehmensstil.
description
:
Die offizelle Webseite der Fachschaft Informatik der Hochschule Darmstadt
dateFormat
:
"
02
Jan
2006"
dateFormat
:
"
02
Jan
2006"
show_post_dates
:
false
show_post_dates
:
false
social
:
social
:
...
...
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