Skip to content

Commit

Permalink
reworked the startpage
Browse files Browse the repository at this point in the history
  • Loading branch information
mg98 committed Jun 23, 2024
1 parent f13c554 commit 378edf6
Show file tree
Hide file tree
Showing 7 changed files with 117 additions and 143 deletions.
11 changes: 7 additions & 4 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ country: The Netherlands
telephone_number: +31 15 27 89995
company_email: [email protected]
google_map: https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2456.432285519263!2d4.375978316053762!3d51.99900038246024!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5b58c1eb5a529%3A0x879226b745603305!2sBuilding%2028!5e0!3m2!1sen!2snl!4v1612522058153!5m2!1sen!2snl
delta: Data Management & Engineering
kappa: Crowd Computing & Human-Centered AI
lambda: Information Retrieval
cel: User Modeling & Learning Analytics

# Research Teams
tds: Trustworthy Distributed Systems
dsb: Decentralized Systems & Blockchain
sgl: Scalable Graph Learning
dls: Distributed Learning Systems
sdm: Scalable Data Management

collections:
people:
Expand Down
57 changes: 6 additions & 51 deletions _includes/filter-people.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,60 +36,16 @@
{% endif %}

<div class="col-lg-4 col-md-6">
{% if people.filter < 8 %}
<a href="{{site.baseurl}}{{people.url}}">
<div class="blockquote-box blockquote-people animated {{animationType}} clearfix">
<div class="square pull-left">
<img src="{{site.baseurl}}/assets/img/people/{{people.image}}" alt="Feature-img" class="person-image">
</div>
<h4>
{{people.name}}
</h4>

<p>
{{people.role}} {% if people.team contains 'cel' %} @ CEL {% endif %}
</p>

{% if people.filter < 8 %}
{% assign empty_twitter = people.twitter | strip %}
{% unless empty_twitter == '' %}
<a class="pr-2" href="{{people.twitter}}" target="_blank" title="Twitter">
<i class="fa-brands fa-lg fa-twitter"></i>
</a>
{% endunless %}

{% assign empty_linkedin = people.linkedin | strip %}
{% unless empty_linkedin == '' %}
<a class="pr-2" href="{{people.linkedin}}"
target="_blank" title="LinkedIn">
<i class="fa-brands fa-lg fa-linkedin"></i>
</a>
{% endunless %}

{% assign empty_github = people.github | strip %}
{% unless empty_github == '' %}
<a class="" href="{{people.github}}" target="_blank" title="GitHub">
<i class="fa-brands fa-lg fa-github"></i>
</a>
{% endunless %}

{% assign empty_webpage = people.webpage | strip %}
{% unless empty_webpage == '' %}
<a class="pr-2" href="{{people.webpage}}" target="_blank" title="Webpage">
<i class="fa-solid fa-lg fa-scroll"></i>
</a>
{% endunless %}
{% endif %}

</div>
</a>
{% else %}
<div class="blockquote-box blockquote-people animated {{animationType}} clearfix">
<div class="square pull-left">
<img src="{{site.baseurl}}/assets/img/people/{{people.image}}" alt="Feature-img" class="person-image">
{% if people.image contains 'http://' or people.image contains 'https://' %}
<div class="person-image" style="background-image:url('{{ people.image }}')"></div>
{% else %}
<div class="person-image" style="background-image:url('{{ site.baseurl }}/assets/img/people/{{ people.image }}')"></div>
{% endif %}
</div>
<h4>
{{people.name}}
<a class="people-item-name" href="{{site.baseurl}}{{people.url}}">{{people.name}}</a>
</h4>

<p>
Expand All @@ -110,7 +66,6 @@ <h4>
</p>

</div>
{% endif %}

</div>

Expand Down
5 changes: 5 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<!-- Favicon and touch icons -->
<link rel="shortcut icon" href="{{site.baseurl}}/assets/ico/favicon.ico">

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Text&family=Roboto+Slab:[email protected]&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">


<!-- CSS -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,300">
<link href='https://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
Expand Down
9 changes: 6 additions & 3 deletions _layouts/person.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,19 @@ <h6><a class="col-lg-2" href="{{site.baseurl}}/{{page.back}}#publications">Publi
{% unless page.details > 0 %}
<h2 id="publications">Publications</h2>
<div id="publicationlist">
{% include get_publications.html pub_link=page.publications_link%}
<iframe src="{{page.publications_link}}"></iframe>
</div>
{% endunless %}
</div>
</div>

<div class="col-lg-3 p-4">
<div class="row">
<img src="{{site.baseurl}}/assets/img/people/{{page.image}}" alt="Picture of {{page.name}}"
width="100%" height="100%">
{% if page.image contains 'http://' or page.image contains 'https://' %}
<img src="{{ page.image }}" alt="Picture of {{ page.name }}" width="100%" height="100%">
{% else %}
<img src="{{ site.baseurl }}/assets/img/people/{{ page.image }}" alt="Picture of {{ page.name }}" width="100%" height="100%">
{% endif %}
</div>

<div class="row margin-top-2">
Expand Down
55 changes: 50 additions & 5 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ address {
text-align: justify;
letter-spacing: 1px;
font-size: 16px;
font-family: 'Arial', sans-serif;
font-family: 'Roboto', sans-serif;
line-height: 24px;
}

Expand Down Expand Up @@ -427,7 +427,7 @@ address {
p.blog-text {
font-size: 16px;
letter-spacing: .1px;
font-family: 'Arial';
font-family: 'Roboto';
text-align: justify;
text-justify: inter-word;
}
Expand Down Expand Up @@ -832,9 +832,15 @@ footer h3 {
}
.blockquote-people .square {
background-color: #fbfff1;
box-shadow: 1px 5px 15px 0px #808080a6;
}

.people-item-name {
color: black;
}

.people-item-name:hover {
text-decoration: underline;
}
/*
* ==========================================================================
* Portfolio
Expand Down Expand Up @@ -941,8 +947,10 @@ footer h3 {
}

.person-image {
width: 100%;
max-width: 100%;
width: 100px;
height: 150px;
background-size: cover;
background-position: center;
}

.person-image-24 {
Expand Down Expand Up @@ -1222,3 +1230,40 @@ div.person > p {
.padding-bottom-1 {
padding-bottom: 1vh;
}
/*
h1, h2, h3 {
font-family: 'Roboto Slab', serif;
} */

#publicationlist {
width: 100%;
}

#publicationlist > iframe {
width: 100%;
border: none;
}

img.undraggable {
user-drag: none;
-webkit-user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}

.absolute {
position: absolute;
}

header {
height: 340px;
background-image: url('https://filelist.tudelft.nl/_processed_/5/9/csm_ds-plaatje_78751f0bc6.jpg');
background-position: center;
background-size: cover;
}

header h1 {
padding-top: 140px;
}
114 changes: 40 additions & 74 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,81 +3,47 @@
permalink: /
---

<div class="container">
<div class="row margin-top-4 margin-bottom-2">
<div class="col-md-4 d-flex align-items-center">
<img src="{{site.baseurl}}/assets/img/dis-logo.png" alt="DIS Logo" width="100%">
</div>
<div class="col-md-8">
<!-- <h3 class="font-weight-light" id="anchor1"> Web Information Systems </h3> -->
<!-- <hr>-->
<p>
The Web Information Systems (WIS) group focuses on research &amp; education in data-based information
systems on the Web and making them more effective in retrieving, processing and interpreting data
generated by humans and machines.
The overall mission of the WIS research group is:
</p>

<ul>
<li>to develop a deep understanding of the construction and use of web-based information systems,</li>
<li>to develop novel methods, techniques, and tools that advance the way in which web-based information
systems are constructed and used, and
</li>
<li>to offer students education that prepares them for a leading role in web-based information systems
science and technology.
</li>
</ul>
</div>
</div>

<div class="row">
<div class="side-left col-sm-4 col-md-4">
<h4 id="news">Latest news</h4>
<hr>
{% include news.html %}
</div>
<div class="col-sm-8 col-md-8">

<img src="{{site.baseurl}}/assets/img/wis.png" class="blog-post col-12" alt="Feature-img" width="100%">

<h4 class="font-weight-light">Focus</h4>
<p>In the Web Information Systems research group, we aim at making web information systems more effective in
retrieving, processing and interpreting data generated by humans and machines.</p>

<h4 class="font-weight-light">Objectives</h4>
<ul>
<li>To understand what human‐ and machine-generated web data represents in terms of people's actions,
interests, intents, and behaviors on the web.
</li>
<li>To develop new solutions to meet the fundamental challenges in how systems effectively attribute and
exploit semantics for human‐ and machine-generated data, given the size and dynamic nature of the
web.
</li>
</ul>
<header>
<h1 class="container text-white">Data-Intensive Systems</h1>
</header>

<h4 class="font-weight-light">Approach</h4>

Our approach towards our objectives of understanding and developing, combines four main research areas:
<ul>
<li>Data Management</li>
<li>Human Computing & Human-Centered AI</li>
<li>Information Retrieval</li>
<li>User Modeling & Learning Analytics</li>
</ul>

<h4 class="font-weight-light">Disciplines</h4>
<p>
As WIS researchers, together with our students, we strive to advance the state-of-the-art in relevant
disciplines like user modeling, Web science, information retrieval, natural language processing,
database systems, Web engineering, Web data management, user interaction, human computing, and human-AI
interaction. We contribute to and impact these scientific disciplines by publishing in the top venues in
these fields and by actively serving in the organization and program committees of relevant conferences
and in editorial boards of relevant journals.
</p>


</div>
</div>
<div class="container">
<div class="margin-top-4 margin-bottom-2">
<p>
The Data-Intensive Systems (DIS) group is one of the sections of the
Department of Software Technology (ST) of the Faculty Electrical
Engineering, Mathematics, and Computer Science (EEMCS) of Delft University
of Technology. Until 2023, the DIS group was called the Distributed
Systems (DS) group.
</p>

<p>
The <strong>mission</strong> of the DiS group is to model, design,
implement, and analyze distributed systems and algorithms. Its
<strong>research</strong> is fundamental, aimed at the development and
evaluation of new generic concepts in systems software, and
application-driven, motivated by important application areas, such as
e-science, big data processing, blockchains, large-scale machine learning,
and online social networks. Much of it is experimental, validating the
proposed new concepts by means of implementation and deployment in
prototypes that are used in the real world. The
<strong>two research areas</strong> of the DIS group are
<strong>distributed machine-learning systems</strong> and
<strong>cooperative systems</strong> (with a strong focus on
<strong>blockchain technology</strong>). The Section Data-Intensive
Systems leads the
<a href="http://www.tudelft.nl/delft-blockchain-lab" target="_blank"
>Delft Blockchain Lab</a
>.
</p>

<p>
The <strong>teaching</strong> of the DIS group consists of BSc courses on
networks and operating systems, and of MSc courses on Blockchain
Engineering, Cloud Computing, Distributed Algorithms, Distributed Systems
and Performance Analysis of Computer Systems.
</p>
</div>
</div>

<!--End Main Container -->
9 changes: 3 additions & 6 deletions publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@ <h2> {{page.title}} </h2>
</div>

<div class="row">
<div id="publicationlist"></div>
{% include get_publications.html pub_link=publications_link%}
<!-- <style>iframe {width: 100%; border: none;}</style>-->
<!-- <script src="https://d1rkab7tlqy5f1.cloudfront.net/Admin/pure-converter/js/iframeResizer.min.js"></script>-->
<!-- <iframe src="https://purexml.ewi.tudelft.nl/direct/tu/group/d4352fd2-26c8-4288-90d5-340b3e36cb06" scrolling="no"></iframe>-->
<!-- <script>iFrameResize()</script>-->
<div id="publicationlist">
<iframe src="{{publications_link}}"></iframe>
</div>
</div>
</div>
</section>
Expand Down

0 comments on commit 378edf6

Please sign in to comment.