Skip to content

Commit d44ad86

Browse files
authored
Pull in master (#2)
* index update * add.bundle * .bundle-to-Gemfile * create-healthcare * create-automation * update-master * Create CNAME
1 parent c2ceb35 commit d44ad86

File tree

18 files changed

+771
-27
lines changed

18 files changed

+771
-27
lines changed

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
quornings.net

Gemfile

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
#gem "jekyll", "~> 3.8.6"
12+
13+
# gem "devlopr"
14+
15+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
16+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
17+
gem "github-pages", group: :jekyll_plugins
18+
19+
# If you have any plugins, put them here!
20+
group :jekyll_plugins do
21+
gem "jekyll-feed", "~> 0.6"
22+
end
23+
24+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
25+
# and associated library.
26+
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
27+
gem "tzinfo", "~> 1.2"
28+
gem "tzinfo-data"
29+
end
30+
31+
# Performance-booster for watching directories on Windows
32+
gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?
33+

_includes/head.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
5+
<meta name="viewport" content="width=device-width">
6+
<meta name="description" content="{{ site.description }}">
7+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
8+
9+
<!-- Custom CSS -->
10+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
11+
12+
</head>

_includes/header.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<header class="site-header">
2+
3+
<div class="wrap">
4+
5+
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
6+
7+
<nav class="site-nav">
8+
<a href="#" class="menu-icon">
9+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
10+
viewBox="0 0 18 15" enable-background="new 0 0 18 15" xml:space="preserve">
11+
<path fill="#505050" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0
12+
h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
13+
<path fill="#505050" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484
14+
h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
15+
<path fill="#505050" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0
16+
c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
17+
</svg>
18+
</a>
19+
<div class="trigger">
20+
{% for page in site.pages %}
21+
{% if page.title == 'About' %}<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>{% endif %}
22+
{% endfor %}
23+
</div>
24+
</nav>
25+
26+
</div>
27+
28+
</header>

_layouts/default.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include header.html %}
9+
10+
<div class="page-content">
11+
<div class="wrap">
12+
{{ content }}
13+
</div>
14+
</div>
15+
</body>
16+
</html>

_layouts/page.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1>{{ page.title }}</h1>
8+
</header>
9+
10+
<article class="post-content">
11+
{{ content }}
12+
</article>
13+
14+
</div>

_layouts/post.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1>{{ page.title }}</h1>
8+
<p class="meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
9+
</header>
10+
11+
<article class="post-content">
12+
{{ content }}
13+
</article>
14+
15+
</div>

_posts/2022-12-07-Ada-1.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- PragmAda
2+
- Program Organization
3+
- Purifying Packages
4+
- Mutation of Code
5+
- Byzantive Rule
6+
- Code organization with GNAT

ada-i-danmark/index.dk

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: page
3+
title: Ada i Danmark (uofficiel)
4+
---
5+
6+
AKA
7+
----
8+
The Danish Ada Mob
9+
10+
Poster
11+
----
12+
- [Formand] Jørgen Bundgaard
13+
- [Sekretær] Johan
14+
- [Kasser] ?
15+
16+
Ansvarsområder
17+
----
18+
- [Hjemmeside] Per Dalgas
19+
20+
Medlemmer
21+
----
22+
- [Jørgen]
23+
- [Johan]
24+
- [Per]
25+
- [Jesper]
26+
27+
Ikke offenliggjorte medlemmer : ?

automation/index.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: page
3+
title: quornings automation
4+
---
5+
6+
Kontor
7+
----
8+
[DCA SAP v/ J Quorning]() @ Kangalusuak / Søndre Strømfjord Airport
9+
Opererer på vejne af [Dupont & Co. Automation
10+
A/S](https://dupontco.dk) Tjærbyvej 202, Tjærby, 8930 Randers SØ,
11+
DANMARK.
12+
13+
Referencer
14+
----
15+
[Royal Greenland](https://www.royalgreenland.com) Dataopsamling,
16+
præsentation, Pakkerobot; Sisimiut, GRØNLAND.
17+
[Fertin Pharma A/S](https://fertin.com) Sporbarhed, Ventilation,
18+
SCADA; Vejle, DANMARK.
19+
[AKV Gummi](https://www.avkgummi.dk) Fryseafgrater opgradering; Låsby,
20+
DANMARK.
21+
22+
Kontakt
23+
----

0 commit comments

Comments
 (0)