diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..63811e7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+**/_gen
diff --git a/.gitmodules b/.gitmodules
index 133d855..c40d545 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,3 @@
-[submodule "themes/toha"]
- path = themes/toha
- url = https://github.com/ikstream/toha-modified.git
+[submodule "themes/educenter-hugo"]
+ path = themes/educenter-hugo
+ url = https://github.com/ikstream/educenter-hugo.git
diff --git a/README.md b/README.md
index a9e5ec2..b2be5ea 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,11 @@
# SupraCoNeX Website
+This repository hosts the SupraCoNeX websites content. It's build automaticly from the files in the source branch and is rebuild with Hugo and GitHub actions on a push to it.
+The Hugo output is pushed to the main branch.
+
+To create a new blog post manually you can create a new `md` file in `content/en/blog/.md`. The preferred way would be to use Hugo for it(md-link), as it applies the template from `archetypes` to the newly created article which you would need to add manually.
+
+
## Running the setup locally
### Getting Hugo
@@ -40,29 +46,31 @@ To serve the current state of the site or for later changes you need hugo
available.
```
-hugo serve -w --config config.yaml -v --disableFastRender --bind=0.0.0.0 -D
+hugo serve -w --config config.toml -v --disableFastRender --bind=0.0.0.0 -D
```
#### Creating new posts
-To create a new post in `mab` run (in a container)
+To create a new post with the title `Best Entry` run
```
-hugo new post/mab//.md
+hugo new blog/best-entry.md
+```
+
+or with the docker
+
```
-You can modify the newly created file now. First change the
-`parent: -news` to the actual topic.
-In the `mab` example this would be `parent: mab-news`.
-This will sort the new post in the according section in the overview.
+docker run -it -p 1313:1313 -v $(pwd):/src/ --rm hugo hugo new blog/best-entry.md
+
+```
+
+You can edit the newly created blog post at
+`content/english/blog/best-entry.md`
After adding some content you can run hugo to check, if your article
meets your expectations. Therefore you need to set `draft: false` and run
`hugo serve` or run `hugo serve -D` if you want to keep the draft status
of your article
-
-To add one image to the top of all posts of a topic just place a hero.svg in
-the root of that topic.
-
-For an individual image for a post create a directory in that topic for that
-post and place a `hero.svg` there, as well as the post's markdown file
+If you use the author tag, please provicde a small description text in
+`content/english/author`
diff --git a/archetypes/default.md b/archetypes/default.md
index b49bad5..ee24e26 100644
--- a/archetypes/default.md
+++ b/archetypes/default.md
@@ -2,142 +2,19 @@
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
-menu:
- sidebar:
- name: {{ replace .Name "-" " " | title }}
- identifier: {{ .Name | title }}
- parent: -news
- weight: 10
----
-## Headings
-
-The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-#### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.
-> — Rob Pike[^1]
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline | Markdown | In | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~ | `code` |
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# post thumbnail
+image: ""
+# post author
+#author: "John Doe"
+# taxonomy
+categories: ["Deep Learning"]
+tags: ["AI", "Automation"]
+# type
+type: "post"
-## Code Blocks
-
-#### Code block with backticks
-
-```
-html
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-```
-#### Code block indented with four spaces
-
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-
-
-
-
- Example HTML5 Document
-
-
-
The Hochschule Nordhausen - University of Applied Sciences (HSN) is a young, modern university of applied sciences. Since being founded in 1997 and admitting its first students in 1998, the university has developed into a future-oriented educational establishment: State-of-the-art technologies, professors and lecturers with practical experience plus modern degree courses which meet the requirements of the future labour market guarantee a high standard of scientific training.
-
Technische Universität Braunschweig
- Technische Universität Braunschweig is a technical university with a rich tradition and a proven research and teaching profile. It has:
-
-
A complete engineering branch covering architecture, civil and environmental engineering, electrical engineering, informatics and mechanical engineering;
-
A strong natural sciences branch with an excellent professional network within TU Braunschweig;
-
Business sciences, social sciences, humanities, educational sciences and subject-specific teaching skills, all of them well integrated into TU Braunschweig.
-
All the departments contribute to defining the university’s focus.
-
- TU Braunschweig is part of the TU9 group of leading technical universities in Germany, and for each of its core disciplines, the engineering subjects, it ranks among the top 9 universities in Germany.
-
-
-
-
Max Planck Institute
The Max Planck Institute for Informatics is devoted to cutting-edge research in informatics with a focus on algorithms and their applications in a broad sense. Our research ranges from foundations (algorithms and complexity, programming logics) to a variety of application domains (computer graphics, geometric computation, constraint solving, program verification, databases and information systems, and computational biology/bioinformatics).
-
NewMedia-NET
IT-Systems are constantly becoming more complex. We help our customers to make:
-
-
impossible things possible
-
difficult things easy
-
easy things comfortable
-
-Because our goal is making IT-Systems working for and not against users.
-
-
-
Heinrich Hertz Institute
Innovations for the digital society of the future are the focus of research and development work at the Fraunhofer Heinrich Hertz Institute HHI. In this area, Fraunhofer HHI is a world leader in the development of mobile and optical communication networks and systems, fiber optical sensor systems as well as the processing and coding of video signals.
-
BISDN
We founded BISDN in 2012 to commercialize the most sweeping innovation the network world has seen over the last decades. Our multi-disciplinary team of experienced engineers, network visionaries and young talents has a combined 70 years of experience in telecommunication networks. As a result, we develop high-performance solutions for network virtualization. At the core of our solutions we use Basebox, the matured experience of 5 years of PoC building, lab trial and field trials.
-
-
-
-
-
-
-## Project Sponsor
diff --git a/content/english/about/_index.md b/content/english/about/_index.md
new file mode 100644
index 0000000..8001be5
--- /dev/null
+++ b/content/english/about/_index.md
@@ -0,0 +1,21 @@
+---
+title: "About Us"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# about image
+image: "images/about/connected_world_1920.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+---
+
+## ABOUT OUR JOURNY
+
+The SupraCoNeX research project enables application-specific, AI-based resource
+allocation and efficient management of today's wireless 802.11-based (WLAN)
+networks in home, enterprise and provider contexts. In particular, statistical
+and adversarial multi-armed-bandit algorithms will be developed for diverse
+application areas in wireless networks with specific communication quality
+requirements in terms of throughput, latency, security, and robustness, and
+evaluated in production communication networks with real Internet traffic.
+
diff --git a/content/english/author/john-doe.md b/content/english/author/john-doe.md
new file mode 100644
index 0000000..105f1f0
--- /dev/null
+++ b/content/english/author/john-doe.md
@@ -0,0 +1,20 @@
+---
+title: "John doe"
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+email: "email2@example.org"
+# portrait
+image: ""
+social:
+ - icon : "ti-facebook" # themify icon pack : https://themify.me/themify-icons
+ link : "#"
+ - icon : "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
+ link : "#"
+ - icon : "ti-github" # themify icon pack : https://themify.me/themify-icons
+ link : "#"
+---
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue. Duis auctor lacus id vehicula gravida. Nam suscipit vitae purus et laoreet.
+Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper.
\ No newline at end of file
diff --git a/content/english/author/mark-dinn.md b/content/english/author/mark-dinn.md
new file mode 100644
index 0000000..7d80de1
--- /dev/null
+++ b/content/english/author/mark-dinn.md
@@ -0,0 +1,20 @@
+---
+title: "Mark Dinn"
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+email: "email2@example.org"
+# portrait
+image: ""
+social:
+ - icon : "ti-facebook" # themify icon pack : https://themify.me/themify-icons
+ link : "#"
+ - icon : "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
+ link : "#"
+ - icon : "ti-github" # themify icon pack : https://themify.me/themify-icons
+ link : "#"
+---
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue. Duis auctor lacus id vehicula gravida. Nam suscipit vitae purus et laoreet.
+Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper.
\ No newline at end of file
diff --git a/content/english/blog/_index.md b/content/english/blog/_index.md
new file mode 100644
index 0000000..472d078
--- /dev/null
+++ b/content/english/blog/_index.md
@@ -0,0 +1,8 @@
+---
+title: "Latest News"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "this is meta description"
+---
diff --git a/content/english/blog/blog-post-6.md b/content/english/blog/blog-post-6.md
new file mode 100644
index 0000000..c842e22
--- /dev/null
+++ b/content/english/blog/blog-post-6.md
@@ -0,0 +1,19 @@
+---
+title: "Elegant Light Box Paper Cut Dioramas"
+date: 2019-07-06T15:27:17+06:00
+draft: true
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# post thumbnail
+image: ""
+# post author
+author: "John Doe"
+# taxonomy
+categories: ["Deep Learning"]
+tags: ["AI", "Automation"]
+# type
+type: "post"
+---
+
diff --git a/content/english/contact/_index.md b/content/english/contact/_index.md
new file mode 100644
index 0000000..b085274
--- /dev/null
+++ b/content/english/contact/_index.md
@@ -0,0 +1,10 @@
+---
+title: "About Us"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+---
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit recusandae voluptates doloremque veniam temporibus porro culpa ipsa, nisi soluta minima saepe laboriosam debitis nesciunt. Dolore, labore. Accusamus nulla sed cum aliquid exercitationem debitis error harum porro maxime quo iusto aliquam dicta modi earum fugiat, vel possimus commodi, deleniti et veniam, fuga ipsum praesentium. Odit unde optio nulla ipsum quae obcaecati! Quod esse natus quibusdam asperiores quam vel, tempore itaque architecto ducimus expedita
diff --git a/content/imprint.md b/content/english/imprint.md
similarity index 96%
rename from content/imprint.md
rename to content/english/imprint.md
index 8531a65..d8ccb49 100644
--- a/content/imprint.md
+++ b/content/english/imprint.md
@@ -2,6 +2,9 @@
title: "Imprint"
date: 2021-02-24T15:17:05Z
draft: false
+bg_image: "images/banner/background_free.jpg"
+image: "images/banner/imprint.jpg"
+type: "course"
---
## Provider Identification
diff --git a/content/english/notice/_index.md b/content/english/notice/_index.md
new file mode 100644
index 0000000..e0f730b
--- /dev/null
+++ b/content/english/notice/_index.md
@@ -0,0 +1,8 @@
+---
+title: "Notice"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+---
\ No newline at end of file
diff --git a/content/english/notice/notice-1.md b/content/english/notice/notice-1.md
new file mode 100644
index 0000000..97a3770
--- /dev/null
+++ b/content/english/notice/notice-1.md
@@ -0,0 +1,50 @@
+---
+title: "Teaching Materials and Testing Methods"
+date: 2019-07-06T15:27:17+06:00
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# notice download link
+download_link : "#"
+# type
+type: "notice"
+---
+
+
+### About Notice
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
+
+### Requirements
+
+
+
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+
+
+### Fees and Funding
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
\ No newline at end of file
diff --git a/content/english/notice/notice-2.md b/content/english/notice/notice-2.md
new file mode 100644
index 0000000..97a3770
--- /dev/null
+++ b/content/english/notice/notice-2.md
@@ -0,0 +1,50 @@
+---
+title: "Teaching Materials and Testing Methods"
+date: 2019-07-06T15:27:17+06:00
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# notice download link
+download_link : "#"
+# type
+type: "notice"
+---
+
+
+### About Notice
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
+
+### Requirements
+
+
+
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+
+
+### Fees and Funding
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
\ No newline at end of file
diff --git a/content/english/notice/notice-3.md b/content/english/notice/notice-3.md
new file mode 100644
index 0000000..97a3770
--- /dev/null
+++ b/content/english/notice/notice-3.md
@@ -0,0 +1,50 @@
+---
+title: "Teaching Materials and Testing Methods"
+date: 2019-07-06T15:27:17+06:00
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# notice download link
+download_link : "#"
+# type
+type: "notice"
+---
+
+
+### About Notice
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
+
+### Requirements
+
+
+
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+
+
+### Fees and Funding
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
\ No newline at end of file
diff --git a/content/english/notice/notice-4.md b/content/english/notice/notice-4.md
new file mode 100644
index 0000000..97a3770
--- /dev/null
+++ b/content/english/notice/notice-4.md
@@ -0,0 +1,50 @@
+---
+title: "Teaching Materials and Testing Methods"
+date: 2019-07-06T15:27:17+06:00
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# notice download link
+download_link : "#"
+# type
+type: "notice"
+---
+
+
+### About Notice
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
+
+### Requirements
+
+
+
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+
+
+### Fees and Funding
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
\ No newline at end of file
diff --git a/content/english/notice/notice-5.md b/content/english/notice/notice-5.md
new file mode 100644
index 0000000..97a3770
--- /dev/null
+++ b/content/english/notice/notice-5.md
@@ -0,0 +1,50 @@
+---
+title: "Teaching Materials and Testing Methods"
+date: 2019-07-06T15:27:17+06:00
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# notice download link
+download_link : "#"
+# type
+type: "notice"
+---
+
+
+### About Notice
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
+
+### Requirements
+
+
+
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+
+
+### Fees and Funding
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
\ No newline at end of file
diff --git a/content/english/notice/notice-6.md b/content/english/notice/notice-6.md
new file mode 100644
index 0000000..97a3770
--- /dev/null
+++ b/content/english/notice/notice-6.md
@@ -0,0 +1,50 @@
+---
+title: "Teaching Materials and Testing Methods"
+date: 2019-07-06T15:27:17+06:00
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# notice download link
+download_link : "#"
+# type
+type: "notice"
+---
+
+
+### About Notice
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
+
+### Requirements
+
+
+
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+* Lorem ipsum dolor sit amet consectetur adipisicing elit.
+
+
+### Fees and Funding
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
+dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
+nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
+anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
+laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
+dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia
+consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem
+ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
+labore et dolore magnam aliquam quaerat voluptatem.
\ No newline at end of file
diff --git a/content/english/partner/_index.md b/content/english/partner/_index.md
new file mode 100644
index 0000000..abfa8e4
--- /dev/null
+++ b/content/english/partner/_index.md
@@ -0,0 +1,8 @@
+---
+title: "Partner"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : "The following organizations participate in SupraCoNeX"
+---
diff --git a/content/english/partner/bisdn.md b/content/english/partner/bisdn.md
new file mode 100644
index 0000000..c9237c7
--- /dev/null
+++ b/content/english/partner/bisdn.md
@@ -0,0 +1,66 @@
+---
+title: "BISDN GmbH"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : ""
+# teacher portrait
+image: "images/logos/bisdn-resized.png"
+# course
+course: ""
+# biography
+bio: "BISDN GmbH was founded in Berlin in 2012 and today develops hardware-accelerated network functions on standard hardware there. The core of the development is a free operating system for so-called whitebox switches."
+# interest
+# interest: ["Computer Networking","Computer Security","Human Computer Interfacing"]
+# contact info
+#contact:
+# # contact item loop
+# - name : "clarkmalik@email.com"
+# icon : "ti-email" # icon pack : https://themify.me/themify-icons
+# link : "mailto:clarkmalik@email.com"
+#
+# # contact item loop
+# - name : "+12 034 5876"
+# icon : "ti-mobile" # icon pack : https://themify.me/themify-icons
+# link : "tel:+120345876"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-facebook" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-twitter-alt" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-skype" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "clarkmalik.com"
+# icon : "ti-world" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "1313 Boulevard Cremazie,Quebec"
+# icon : "ti-location-pin" # icon pack : https://themify.me/themify-icons
+# link : "#"
+
+# type
+type: "partner"
+---
+
+BISDN is currently one of 3 companies working closely with Deutsche Telekom in
+the TEAC incubator program of the Telecom Infrastructure Project (TIP). Further
+cooperations exist with Intel and HPE. As a result, prototypes for e.g.
+BRAS/BNG, IPSec gateways, or WiFi cloud solutions have been developed in the
+last years, which show the potential of software-based solutions, if their
+functionality is suitably supported by external ASICs or FPGAs. Since last
+year, these prototypes have been successively transferred into products. BISDN
+was and is active in a number of national (SENDATE, SESAM) and EU projects
+(FP7 UNIFY, H2020 5GEx).
+
diff --git a/content/english/partner/hhi.md b/content/english/partner/hhi.md
new file mode 100644
index 0000000..9abb309
--- /dev/null
+++ b/content/english/partner/hhi.md
@@ -0,0 +1,91 @@
+---
+title: "Heinrich Hertz Institute"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : ""
+# teacher portrait
+image: "images/logos/hhi-resized.png"
+# course
+course: ""
+# biography
+bio: "The Fraunhofer Institute for Telecommunications, Heinrich Hertz Institute has been working on the development of intelligent wireless communication solutions for more than 20 years. The Wireless Communications and Networks department, headed by Prof. Slawomir Stanczak, focuses on the optimization of wireless communication networks in close cooperation with companies."
+# interest
+interest: [""]
+## contact info
+#contact:
+# # contact item loop
+# - name : "clarkmalik@email.com"
+# icon : "ti-email" # icon pack : https://themify.me/themify-icons
+# link : "mailto:clarkmalik@email.com"
+#
+# # contact item loop
+# - name : "+12 034 5876"
+# icon : "ti-mobile" # icon pack : https://themify.me/themify-icons
+# link : "tel:+120345876"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-facebook" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-twitter-alt" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-skype" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "clarkmalik.com"
+# icon : "ti-world" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "1313 Boulevard Cremazie,Quebec"
+# icon : "ti-location-pin" # icon pack : https://themify.me/themify-icons
+# link : "#"
+
+# type
+type: "partner"
+---
+
+### About Me
+
+The department's research focuses on dynamic resource allocation in wireless
+communication networks [SST09], programmatic control and virtualization of
+wireless networks (Software-Defined Wireless Networking) [JSZ15, JSZ16, JSZ17],
+the combination of machine learning and communication, in particular the
+development of information extraction mechanisms and, based on them, predictive
+analysis tools to support (distributed) decision-making processes in the
+network, and anomaly detection. Furthermore, the department has profound
+expertise in network-assisted D2D communication, channel and interference
+estimation, coexistence and interference management, and cognitive network
+management (consensus building, detection, classification, and prediction).
+
+For this research project, Fraunhofer HHI can build on preliminary work on the
+following key areas: (1) The development of robust and efficient algorithms and
+protocols for wireless networks (HyEff, 3GET, ScaleNet, MxMo-bile, Smart-RF,
+EASY-C, IntelliSpektrum, ComGreen, FANTASTIC5G, mmMAGIC, CoMoRa, One5G) as well
+as coordinated, robust and secure real-time communications in industry and
+commerce (IC4F, KOI, SEKOM). (2) The development and application of machine
+learning methods for communication networks. A major research focus is the
+development of novel information extraction mechanisms and predictive analysis
+tools (e.g. EU projects GreenNets, BMBF project SEKOM, BMWi project IC4F as well
+as in the context of direct industry collaborations). The focus is especially on
+the development of "online" methods with low complexity, e.g. to process
+measurements in active networks in real time.
+
+The HHI has a powerful high-performance computing cluster (250 computing nodes
+with 300 TFLOPs peak performance, 1.64 PB of decentralized as well as 250 TB of
+centralized storage and up to 100 Gigabit Ethernet connections), which is
+capable of handling computationally intensive machine learning problems or
+extremely large data sets. The evaluation and performance analysis of the AI
+algorithms and SND orchestration will take place in the productive broadband
+network of Evernet eG and will be awarded to Evernet eG as part of an R&D
+subcontract. This R&D contract is coordinated by the HHI.
+
diff --git a/content/english/partner/hochschule-nordhausen.md b/content/english/partner/hochschule-nordhausen.md
new file mode 100644
index 0000000..5ab80d8
--- /dev/null
+++ b/content/english/partner/hochschule-nordhausen.md
@@ -0,0 +1,77 @@
+---
+title: "Hochschule Nordhausen"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : ""
+# teacher portrait
+image: "images/logos/hsn-resized.png"
+# course
+course: ""
+# biography
+bio: "Since 1997, Nordhausen University of Applied Sciences has offered a range of courses for the Department of Engineering Sciences with nine Bachelor's and five Master's degree programs, as well as the Department of Economics and Social Sciences with six Bachelor's and five Master's degree programs."
+# interest
+interest: [""]
+# contact info
+#contact:
+# # contact item loop
+# - name : "clarkmalik@email.com"
+# icon : "ti-email" # icon pack : https://themify.me/themify-icons
+# link : "mailto:clarkmalik@email.com"
+#
+# # contact item loop
+# - name : "+12 034 5876"
+# icon : "ti-mobile" # icon pack : https://themify.me/themify-icons
+# link : "tel:+120345876"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-facebook" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-twitter-alt" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-skype" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "clarkmalik.com"
+# icon : "ti-world" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "1313 Boulevard Cremazie,Quebec"
+# icon : "ti-location-pin" # icon pack : https://themify.me/themify-icons
+# link : "#"
+
+# type
+type: "partner"
+---
+The research focus of the Department of Communications Engineering, headed by
+Prof. Dr.-Ing. Thomas Hühn since October 2019, is on practical resource
+allocation of transmit power and transmit rates in wireless WLAN networks.
+Prof. Hühn has a PhD on efficient algorithms for resource allocation in
+application-oriented WLAN-based wireless networks and has acquired and led
+several national and international research projects. As an active partner in
+national (Verdele FACTS - BMWI) and European (MONROE - Horizon2020) research
+projects, Prof. Hühn has acquired a deep technical knowledge of network
+experiments for validation and performance evaluation of resource allocation
+algorithms and wireless software-defined networks concepts in WLAN-based radio
+networks. The Internet Automation-Electrical Engineering course is
+significantly influenced by Prof. Hühn's courses on communication engineering
+and will experience a new, practical use case for performance enhancement in
+wireless networks through the collaborative research project SupraCoNex.
+The consortium leadership of the joint research project SupraCoNex is
+coordinated by Prof. Hühn and his colleagues. The many years of expertise that
+Prof. Hühn brings to the Department of Communication Technology at Nordhausen
+University of Applied Sciences with regard to the coordination and management
+of collaborative research projects ensures the success of the project in terms
+of scientific, entrepreneurial and educational cooperation between the project
+partners.
+
diff --git a/content/english/partner/montanuni_leoben.md b/content/english/partner/montanuni_leoben.md
new file mode 100644
index 0000000..8389e9b
--- /dev/null
+++ b/content/english/partner/montanuni_leoben.md
@@ -0,0 +1,68 @@
+---
+title: "Montan University Leoben"
+draft: false
+# page title background image
+bg_image: "images/banner/background.jp"
+# meta description
+description : ""
+# teacher portrait
+image: "images/logos/motanuni-resized.jpg"
+# course
+course: ""
+# biography
+bio: "NewMedia-NET GmbH (NMN) has been developing Linux-based operating systems for embedded routers for years, especially for embedded systems for WLAN communication. The development focus is on GNU/Linux drivers for various IEEE 802.11ax chips, for which NMN closely cooperates with manufacturers of WLAN chipsets."
+# interest
+interest: [""]
+# contact info
+#contact:
+# # contact item loop
+# - name : "clarkmalik@email.com"
+# icon : "ti-email" # icon pack : https://themify.me/themify-icons
+# link : "mailto:clarkmalik@email.com"
+#
+# # contact item loop
+# - name : "+12 034 5876"
+# icon : "ti-mobile" # icon pack : https://themify.me/themify-icons
+# link : "tel:+120345876"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-facebook" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-twitter-alt" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-skype" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "clarkmalik.com"
+# icon : "ti-world" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "1313 Boulevard Cremazie,Quebec"
+# icon : "ti-location-pin" # icon pack : https://themify.me/themify-icons
+# link : "#"
+
+# type
+type: "partner"
+---
+
+NMN is actively involved in the development of the open source Linux mac802.11
+subsystem with it's employee Felix Fietkau , who is the maintainer of the
+de-facto standard WLAN rate control algorithm "Minstrel_HT" in the Linux
+kernel, which is the basis of today's WLAN routers, as well as the open
+source WLAN driver "mt76" for chipsets of the MT76xx series from Mediatek.
+
+Furthermore, NMN is involved in the development of the WLAN driver ath9k,
+which was created in intensive cooperation with Atheros (today Qualcomm Atheros).
+In addition to system and driver development, solutions for client management
+via multiple access points as well as solutions for remote management, among
+others for Nokia-Siemens, are also developed.
+
diff --git a/content/english/partner/mpi.md b/content/english/partner/mpi.md
new file mode 100644
index 0000000..57122f9
--- /dev/null
+++ b/content/english/partner/mpi.md
@@ -0,0 +1,69 @@
+---
+title: "Max Planck Institut Informatik"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : ""
+# teacher portrait
+image: "images/logos/mpi-resized.png"
+# course
+course: ""
+# biography
+bio: "Prof. Anja Feldmann is Director at the Max Planck Institute for Informatics and has led the Internet Architecture (INET) department since 2018. The department's research focuses are: Internet architectures, Internet traffic analysis and modeling of improved traffic models, innovative methods for traffic routing, methods for network optimization, and solutions for energy-efficient operation."
+# interest
+interest: [""]
+# contact info
+#contact:
+# # contact item loop
+# - name : "clarkmalik@email.com"
+# icon : "ti-email" # icon pack : https://themify.me/themify-icons
+# link : "mailto:clarkmalik@email.com"
+#
+# # contact item loop
+# - name : "+12 034 5876"
+# icon : "ti-mobile" # icon pack : https://themify.me/themify-icons
+# link : "tel:+120345876"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-facebook" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-twitter-alt" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-skype" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "clarkmalik.com"
+# icon : "ti-world" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "1313 Boulevard Cremazie,Quebec"
+# icon : "ti-location-pin" # icon pack : https://themify.me/themify-icons
+# link : "#"
+
+# type
+type: "partner"
+---
+
+### About Me
+
+Current research topics include analysis of the performance of computer network
+systems, in particular analysis of bottlenecks in the Internet and ways of
+resolving them, heterogeneous and programmable networking, cloud networks, and
+network optimization. Furthermore, the INET department conducts research on
+wide-area data analytics, systems for countering targeted attacks on high-speed
+networks, techniques for providing guarantees in TCP/IP networks, basic protocol
+security (security and privacy by design), intrusion detection systems, and
+dynamic placement of network functions (NFV). Prof. Anja Feldmann is a member of
+the Leopoldina - National Academy of Sciences, the Academia Europaea, and the
+Berlin-Brandenburg Academy of Sciences. In 2011, she received the Gottfried
+Wilhelm Leibniz Prize of the DFG.
diff --git a/content/english/partner/new-media.md b/content/english/partner/new-media.md
new file mode 100644
index 0000000..3a81f16
--- /dev/null
+++ b/content/english/partner/new-media.md
@@ -0,0 +1,68 @@
+---
+title: "NewMedia-Net GmbH"
+draft: false
+# page title background image
+bg_image: "images/banner/background.jp"
+# meta description
+description : ""
+# teacher portrait
+image: "images/logos/new_media-resized.png"
+# course
+course: ""
+# biography
+bio: "NewMedia-NET GmbH (NMN) has been developing Linux-based operating systems for embedded routers for years, especially for embedded systems for WLAN communication. The development focus is on GNU/Linux drivers for various IEEE 802.11ax chips, for which NMN closely cooperates with manufacturers of WLAN chipsets."
+# interest
+interest: [""]
+# contact info
+#contact:
+# # contact item loop
+# - name : "clarkmalik@email.com"
+# icon : "ti-email" # icon pack : https://themify.me/themify-icons
+# link : "mailto:clarkmalik@email.com"
+#
+# # contact item loop
+# - name : "+12 034 5876"
+# icon : "ti-mobile" # icon pack : https://themify.me/themify-icons
+# link : "tel:+120345876"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-facebook" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-twitter-alt" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-skype" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "clarkmalik.com"
+# icon : "ti-world" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "1313 Boulevard Cremazie,Quebec"
+# icon : "ti-location-pin" # icon pack : https://themify.me/themify-icons
+# link : "#"
+
+# type
+type: "partner"
+---
+
+NMN is actively involved in the development of the open source Linux mac802.11
+subsystem with it's employee Felix Fietkau , who is the maintainer of the
+de-facto standard WLAN rate control algorithm "Minstrel_HT" in the Linux
+kernel, which is the basis of today's WLAN routers, as well as the open
+source WLAN driver "mt76" for chipsets of the MT76xx series from Mediatek.
+
+Furthermore, NMN is involved in the development of the WLAN driver ath9k,
+which was created in intensive cooperation with Atheros (today Qualcomm Atheros).
+In addition to system and driver development, solutions for client management
+via multiple access points as well as solutions for remote management, among
+others for Nokia-Siemens, are also developed.
+
diff --git a/content/english/partner/tu-braunschweig.md b/content/english/partner/tu-braunschweig.md
new file mode 100644
index 0000000..4655cde
--- /dev/null
+++ b/content/english/partner/tu-braunschweig.md
@@ -0,0 +1,93 @@
+---
+title: "Technische Universität Braunschweig"
+draft: false
+# page title background image
+bg_image: "images/banner/background_free.jpg"
+# meta description
+description : ""
+# teacher portrait
+image: "images/logos/tu_braunschweig_logo-resized.png"
+# course
+course: ""
+# biography
+bio: "The Department of Information Theory and Communication Systems, headed by Prof. Eduard A. Jorswieck, conducts research and development in the areas of applied information theory, signal processing for communication networks, and optimal design of communication systems. Application areas include multiple antennas and multicell multiple subscriber systems in IEEE 802.11 and 4G-/5G-and subsequent cellular networks."
+# interest
+interest: [""]
+# contact info
+#contact:
+# # contact item loop
+# - name : "clarkmalik@email.com"
+# icon : "ti-email" # icon pack : https://themify.me/themify-icons
+# link : "mailto:clarkmalik@email.com"
+#
+# # contact item loop
+# - name : "+12 034 5876"
+# icon : "ti-mobile" # icon pack : https://themify.me/themify-icons
+# link : "tel:+120345876"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-facebook" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-twitter-alt" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "Clark Malik"
+# icon : "ti-skype" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "clarkmalik.com"
+# icon : "ti-world" # icon pack : https://themify.me/themify-icons
+# link : "#"
+#
+# # contact item loop
+# - name : "1313 Boulevard Cremazie,Quebec"
+# icon : "ti-location-pin" # icon pack : https://themify.me/themify-icons
+# link : "#"
+
+# type
+type: "partner"
+---
+
+Prof. Jorswieck was and is involved in several national and international
+collaborative research projects or leads them in the function of consortium
+leader: subproject leader in the BMBF projects Cool Silicon (Cool Cellular),
+FAST (Fast Secure and Fast Cloud), PROPHYLAXE and in the BMWI EXIST research
+transfer project Enhanced Radio Resource Trading. He led the EU FP7 project
+SAPHYRE as technical project leader and was/is project partner in
+FP7 NoE ACROPOLIS, DIWINE, and H2020 ITN 5G Wireless.
+Prof. Eduard Jorswieck has been a university professor and head of the
+Department of Information Theory and Communication Systems in the Institute of
+Communications Engineering at the Technische Universität Braunschweig (TUBr)
+since 2019. Prior to that, he was a university professor for eleven years and
+headed the Chair of Theoretical Communications Engineering at TU Dresden.
+Eduard's research interests are in applied information theory, signal
+processing, and communication theory. In these areas, he has authored more than
+115 journal publications, 3 monographs, 13 book chapters, and just over 275
+conference papers, as well as presented over 10 tutorials at IEEE conferences.
+Most recently at IEEE Globecom in December 2018 on "Signal Processing Techniques
+for Ultra Reliable Low Latency Communications (URLLC)", where new algorithms for
+scheduling and resource allocation were presented using adaptive Markov models
+and reinforcement learning. Since 2017, he has been Editor-in-Chief of the
+Springer EURASIP Journal on Wireless Communications and Networking. He is an
+IEEE Senior Member (IEEE Fellow as of 2020) and an elected member of the
+IEEE SAM Technical Committee.
+
+A systematic approach to modeling and solving distributed resource allocation
+problems in interference networks are so-called multi-armed bandits.
+In mathematics and especially in operations research, such models for
+single-user systems (local optimization at a network node) are very well known.
+In the SupraCoNeX project, however, these models have to be extended to multiple
+participants/nodes. This requires a sound knowledge of the theory of multi-armed
+bandits, because the use goes beyond a pure application. There are few experts
+in this research area worldwide and no partner in the project consortium has the
+sufficient qualifications. The local closest proven expert on MABs is Professor
+Peter Auer from Leoben. In order for the project to consider this essential
+point of modeling and system optimization, the subcontract to the
+Montanuiversität Leoben is indispensable.
+
diff --git a/content/english/research/_index.md b/content/english/research/_index.md
new file mode 100644
index 0000000..089b6a2
--- /dev/null
+++ b/content/english/research/_index.md
@@ -0,0 +1,10 @@
+---
+title: "Published Research"
+draft: false
+# page title background image
+bg_image: ""
+# meta description
+description : "As part of the SupraCoNeX project the following publications were
+ released. As this project combines multiple research areas the
+ output is separated in different categories"
+---
diff --git a/content/english/research/research-1.md b/content/english/research/research-1.md
new file mode 100644
index 0000000..a21e0eb
--- /dev/null
+++ b/content/english/research/research-1.md
@@ -0,0 +1,21 @@
+---
+title: "Geography"
+date: 2019-07-06T15:27:17+06:00
+draft: true
+# page title background image
+bg_image: ""
+# meta description
+description : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. dolore magna aliqua. Ut enim ad minim veniam, quis nostrud."
+# Research image
+image: ""
+# type
+type: "research"
+---
+
+### About Research
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
+
+Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
+
+Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est.
diff --git a/content/post/_index.md b/content/post/_index.md
deleted file mode 100644
index e552239..0000000
--- a/content/post/_index.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: "Post"
-aliases :
- - posts
- - News
-date: 2021-02-10T10:24:19Z
-menu:
- sidebar:
- name: News
- identifier: news
- weight: 10
-draft: false
----
-
diff --git a/content/post/hw/_index.md b/content/post/hw/_index.md
deleted file mode 100644
index 98b057b..0000000
--- a/content/post/hw/_index.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Hw"
-date: 2021-02-10T10:31:37Z
-draft: false
-menu:
- sidebar:
- name: Hardware
- identifier: hw-news
- parent: news
- weight: 10
----
-
diff --git a/content/post/hw/test-for-a-long-name.md b/content/post/hw/test-for-a-long-name.md
deleted file mode 100644
index bbffe9f..0000000
--- a/content/post/hw/test-for-a-long-name.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: "Test for a Long Name"
-date: 2021-02-26T11:36:11Z
-draft: false
-menu:
- sidebar:
- name: Test for a Long Name
- identifier: Test-for-a-Long-Name
- parent: hw-news
- weight: 10
----
-
-This is just another test
-
-To show how content changes
diff --git a/content/post/hw/test.md b/content/post/hw/test.md
deleted file mode 100644
index a05cb45..0000000
--- a/content/post/hw/test.md
+++ /dev/null
@@ -1,146 +0,0 @@
----
-title: "Hardware Intro"
-date: 2021-02-10T10:31:43Z
-draft: false
-menu:
- sidebar:
- name: Hardware Intro
- identifier: Hardware-Intro
- parent: hw-news
- weight: 10
----
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-
-
-## Headings
-
-The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-#### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.
-> — Rob Pike[^1]
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline | Markdown | In | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~ | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-```
-html
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-```
-#### Code block indented with four spaces
-
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Fruit
- * Apple
- * Orange
- * Banana
-* Dairy
- * Milk
- * Cheese
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-GIF is a bitmap image format.
-
-H2O
-
-Xn + Yn = Zn
-
-Press CTRL+ALT+Delete to end the session.
-
-Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
-
-## include an Image
-
-
diff --git a/content/post/images/snip_2021-02-17-17:41:01.jpg b/content/post/images/snip_2021-02-17-17:41:01.jpg
deleted file mode 100644
index 551b12f..0000000
Binary files a/content/post/images/snip_2021-02-17-17:41:01.jpg and /dev/null differ
diff --git a/content/post/mab/_index.md b/content/post/mab/_index.md
deleted file mode 100644
index 7ffd42d..0000000
--- a/content/post/mab/_index.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Mab"
-date: 2021-02-10T10:30:46Z
-draft: false
-menu:
- sidebar:
- name: Multi-arm bandit
- identifier: mab-news
- parent: news
- weight: 20
----
-
diff --git a/content/post/mab/start.md b/content/post/mab/start.md
deleted file mode 100644
index 71016ad..0000000
--- a/content/post/mab/start.md
+++ /dev/null
@@ -1,146 +0,0 @@
----
-title: "Start"
-date: 2021-02-10T10:30:52Z
-draft: false
-menu:
- sidebar:
- name: Multi-arm bandit Intro
- identifier: multi-arm-bandit-intro
- parent: mab-news
- weight: 500
----
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-
-
-## Headings
-
-The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-#### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.
-> — Rob Pike[^1]
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline | Markdown | In | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~ | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-```
-html
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-```
-#### Code block indented with four spaces
-
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Fruit
- * Apple
- * Orange
- * Banana
-* Dairy
- * Milk
- * Cheese
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-GIF is a bitmap image format.
-
-H2O
-
-Xn + Yn = Zn
-
-Press CTRL+ALT+Delete to end the session.
-
-Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
-
-## include an Image
-
-
diff --git a/content/post/pub/_index.md b/content/post/pub/_index.md
deleted file mode 100644
index 17f8fd8..0000000
--- a/content/post/pub/_index.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Pub"
-date: 2021-02-10T10:32:16Z
-draft: false
-menu:
- sidebar:
- name: Publications
- identifier: pub-news
- parent: news
- weight: 30
----
-
diff --git a/content/post/pub/test.md b/content/post/pub/test.md
deleted file mode 100644
index ab53764..0000000
--- a/content/post/pub/test.md
+++ /dev/null
@@ -1,146 +0,0 @@
----
-title: "Publications Intro"
-date: 2021-02-10T10:32:21Z
-draft: false
-menu:
- sidebar:
- name: Publications Intro
- identifier: publicaitons-intro
- parent: pub-news
- weight: 500
----
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-
-
-## Headings
-
-The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-#### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.
-> — Rob Pike[^1]
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline | Markdown | In | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~ | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-```
-html
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-```
-#### Code block indented with four spaces
-
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Fruit
- * Apple
- * Orange
- * Banana
-* Dairy
- * Milk
- * Cheese
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-GIF is a bitmap image format.
-
-H2O
-
-Xn + Yn = Zn
-
-Press CTRL+ALT+Delete to end the session.
-
-Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
-
-## include an Image
-
-
diff --git a/content/post/sdn/_index.md b/content/post/sdn/_index.md
deleted file mode 100644
index d92cb7f..0000000
--- a/content/post/sdn/_index.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Sdn"
-date: 2021-02-10T10:31:21Z
-draft: false
-menu:
- sidebar:
- name: Software Defined Networking
- identifier: sdn-news
- parent: news
- weight: 40
----
-
diff --git a/content/post/sdn/test.md b/content/post/sdn/test.md
deleted file mode 100644
index b9db200..0000000
--- a/content/post/sdn/test.md
+++ /dev/null
@@ -1,146 +0,0 @@
----
-title: "SDN-Intro"
-date: 2021-02-10T10:31:28Z
-draft: false
-menu:
- sidebar:
- name: SDN Intro
- identifier: SDN-intro
- parent: sdn-news
- weight: 500
----
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-
-
-## Headings
-
-The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-#### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.
-> — Rob Pike[^1]
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline | Markdown | In | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~ | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-```
-html
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-```
-#### Code block indented with four spaces
-
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Fruit
- * Apple
- * Orange
- * Banana
-* Dairy
- * Milk
- * Cheese
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-GIF is a bitmap image format.
-
-H2O
-
-Xn + Yn = Zn
-
-Press CTRL+ALT+Delete to end the session.
-
-Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
-
-## include an Image
-
-
diff --git a/content/post/tb/_index.md b/content/post/tb/_index.md
deleted file mode 100644
index ac8360e..0000000
--- a/content/post/tb/_index.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Tb"
-date: 2021-02-10T10:31:54Z
-draft: false
-menu:
- sidebar:
- name: Testbed
- identifier: tb-news
- parent: news
- weight: 50
----
-
diff --git a/content/post/tb/test.md b/content/post/tb/test.md
deleted file mode 100644
index e8899bd..0000000
--- a/content/post/tb/test.md
+++ /dev/null
@@ -1,147 +0,0 @@
----
-title: "Testbed Intro"
-date: 2021-02-10T10:31:59Z
-draft: false
-menu:
- sidebar:
- name: Testbed Intro
- identifier: Testbed-Intro
- parent: tb-news
- weight: 500
----
-
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-
-
-## Headings
-
-The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-#### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.
-> — Rob Pike[^1]
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline | Markdown | In | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~ | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-```
-html
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-```
-#### Code block indented with four spaces
-
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-
-
-
-
- Example HTML5 Document
-
-
-
Test
-
-
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Fruit
- * Apple
- * Orange
- * Banana
-* Dairy
- * Milk
- * Cheese
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-GIF is a bitmap image format.
-
-H2O
-
-Xn + Yn = Zn
-
-Press CTRL+ALT+Delete to end the session.
-
-Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
-
-## include an Image
-
-
diff --git a/content/post/test.md b/content/post/test.md
deleted file mode 100644
index 02516d5..0000000
--- a/content/post/test.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-title: "Test"
-date: 2021-02-10T10:13:20Z
-draft: false
----
-# This is a very basic test
-
-## h2
-
-### h3
diff --git a/content/publications.md b/content/publications.md
deleted file mode 100644
index 90916d9..0000000
--- a/content/publications.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-title: "Publications"
-date: 2017-11-08T16:56:15+02:00
-draft: false
-description: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolores porro voluptas esse natus nemo aperiam asperiores velit neque, magni molestiae!
-header:
- description: I'm a multidisciplinary designer who specializing in UI, UX and Visual Design. Currently based in United Kingdom.
- image:
- url: network-4636686_1920.jpg
- alt: The designer's workspace table image
- media: "(max-width: 46.25em)"
- params:
- - options: 1130x500 center
-text_groups:
- - name: About
- description: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Facilis saepe perferendis culpa aut libero, voluptatem voluptatum, ut b
- - name: Philosophy
- description: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus incidunt autem quia aliquid officia temporibus saepe ut quas nesciunt dolorum odio optio perspiciatis rem
- - name: Disciplines
- description: