-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·676 lines (583 loc) · 23.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="img/kgb.png"/>
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>KGB Workshop</title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700,900" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Owl Carousel -->
<link type="text/css" rel="stylesheet" href="css/owl.carousel.css" />
<link type="text/css" rel="stylesheet" href="css/owl.theme.default.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="css/style.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Header -->
<header id="header" class="transparent-navbar">
<!-- container -->
<div class="container">
<!-- navbar header -->
<div class="navbar-header">
<!-- Logo -->
<!--<div class="navbar-brand">
<a class="logo" href="index.html">
<img class="logo-img" src="./img/rdf.png" alt="logo">
<img class="logo-alt-img" src="./img/rdf.png" alt="logo">
</a>
</div>-->
<!-- /Logo -->
<!-- Mobile toggle -->
<button class="navbar-toggle">
<i class="fa fa-bars"></i>
</button>
<!-- /Mobile toggle -->
</div>
<!-- /navbar header -->
<!-- Navigation -->
<nav id="nav">
<ul class="main-nav nav navbar-nav navbar-right">
<li><a href="#call">Call</a></li>
<li><a href="#program">Program</a></li>
<li><a href="#important-dates">Important dates</a></li>
<li><a href="#organization">Organization</a></li>
<li><a href="#pc">Program Committee</a></li>
<li><a href="#contact">Website Generation</a></li>
</ul>
</nav>
<!-- /Navigation -->
</div>
<!-- /container -->
</header>
<!-- /Header -->
<!-- Home -->
<div id="home">
<!-- background image -->
<div class="section-bg" style="background-color:rgb(24, 29, 33);" data-stellar-background-ratio="0.5"></div>
<!-- /background image -->
<!-- home wrapper -->
<div class="home-wrapper">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- home content -->
<div class="col-md-10 col-md-offset-1">
<div class="home-content">
<h1>{{ workshop.title }}</h1>
<h4 class="lead">Co-located with the {{ workshop.mainEvent }}</h4>
<h4 class="lead">{{ workshop.location }} - {{ workshop.date }}</h4>
<a href="#call" class="main-btn">See Call for Papers</a>
</div>
</div>
<!-- /home content -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /home wrapper -->
</div>
<!-- /Home -->
<!-- About -->
<div id="call" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h2 class="title"><span>KGB</span> <span style="color: #dd0a37;"> Call for Papers</span></h2>
</div>
<!-- /section title -->
<div class="col-md-10 col-md-offset-1 text-justify">
<!-- about content -->
<div class="about-content" style="font-size: 14pt">
<p>
More and more Knowledge Graphs are generated for private, e.g. Siri, Alexa, or public use, e.g. DBpedia, Wikidata. While techniques to automatically generate Knowledge Graph from existing Web objects exist (i.e., scraping Web tables), the majority need extensive resources. Those with limited resources typically generate Knowledge Graphs by transforming the content of their datasets (RDB, CSV, etc). Initially, generating Knowledge Graphs from existing datasets was considered an engineering task, however scientific methods recently emerged. Lately, <span style="color: #dd0a37;">mapping languages for describing rules to generate knowledge graphs and processors to execute those rules emerged</span>. Addressing the challenges related to Knowledge Graphs generation requires well-founded research, including the investigation of concepts and development of tools and methods for their evaluation. <span style="color: #dd0a37;">KGB is a full-day workshop on Knowledge Graph generation with a special focus on Mapping Languages. It is co-located with the <a href="https://2019.eswc-conferences.org/">Extended Semantic Web Conference 2019 (ESWC2019)</a></span>. The main goal is to provide a venue for scientific discourse, systematic analysis and rigorous evaluation of languages, techniques and tools, as well as practical and applied experiences and lessons-learnt for generating knowledge graphs from academia and industry.
</p>
</div>
</div>
</div>
<div class="row text-center">
<div class="section-title" style="margin-top: 30pt !important; margin-bottom: 10pt !important;">
<h4 class="title" ><span>Topics</span></h4>
</div>
<div>
{% for topic in topics %}
<div class="col-md-10 col-md-offset-1">
<ul class="list-group">
<li class="list-group-item active">
{{ topic.name }}
</li>
{% for subtopic in topic.subTopics %}
<li class="list-group-item">{{ subtopic }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
<div id="benchmarks" class="row text-justify">
<div class="section-title" style="margin-top: 30pt !important; margin-bottom: 10pt !important;">
<h4 class="title" ><span>Benchmarks</span></h4>
</div>
<div class="col-md-10 col-md-offset-1 ">
<p>
The increasing number of methods and tool for Knowledge Graph construction mandate consensus for
evaluation of these methods and tools.
We aim to forge this consensus by assessing strengths and weaknesses of tools,
increasing the communication among algorithm developers, and
improve evaluation techniques and work on Knowledge Graph construction in general.
We aim to achieve this by launching an evaluation campaign that includes
the publication of test cases and results of different tools’ evaluation.
</p>
<div>
<p>
This year we focus on the test cases that help assessing the coverage of the different tools.
We encourage researchers/developers to submit their results after (one of the following):
</p>
<ul>
<li>applying the <b>R2RML test cases</b> to their tools that generate knowledge graphs from data in relational databases;</li>
<li>applying the <b>RML test cases</b> that we ported from R2RML test cases to their tools that generate knowledge graphs from data in heterogeneous formats;</li>
<li>porting the <b>test cases to other languages</b> and applying them to their tools that generate knowledge graphs;</li>
<li>applying the <b>RODI benchmark</b> to their tools that (semi-)automatically generates RDB2RDF mappings.</li>
</ul>
</div>
<p>
From the results, researchers/developers are expected
to submit a system paper (6-8 pages using the LNCS style) in the proceedings
of the Knowledge Graph Building workshop.
</p>
<div>
<p>
To ensure easy comparability, we suggest that the papers follow this outline:
</p>
<ul>
<li><b>tools presentation</b> (description, status, algorithms, links to the system);</li>
<li><b>test cases results</b> (comments for the performed test cases and results);
<li><b>discussion and conclusions</b>
<ul>
<li>tool: strengths and weaknesses, possible improvements,</li>
<li>test cases: comments on the test cases, new test cases proposal.</li>
</ul>
</li>
</ul>
</div>
<p>
Resources:
</p>
<ul>
<li><a href="https://www.w3.org/2001/sw/rdb2rdf/test-cases/">R2RML test cases</a></li>
<li><a href="http://rml.io/test-cases/">RML test cases</a></li>
<li><a href="https://github.com/chrpin/rodi">RODI benchmark</a></li>
</ul>
</div>
</div>
<!-- /about content -->
<div class="row">
<!-- /Numbers -->
<div class="section-title" style="margin-top: 30pt !important; margin-bottom: 40pt !important;">
<h4 class="title" ><span>Authors Guideline</span></h4>
</div>
<div class="col-md-4 col-md-offset-2">
<h3 class="title"><span style="color: #dd0a37;">Format</span></h3>
<p style="font-size: 14pt">
Authors can choose the best way to express their work, such as HTML or PDF. However, a LNCS-like layout should be provided. If your contribution will be in HTML, you can find some available tools in the <a href="https://2019.eswc-conferences.org/html-submission-guide/">ESWC19 HTML guideline.</a>
</p>
</div>
<div class="col-md-4 col-md-offset-1">
<h3 class="title"><span style="color: #dd0a37;">Contributions</span></h3>
<ul style="font-size: 14pt">
<li>Full research papers (8-12 pages)</li>
<li>In Use and Experience papers (8-12 pages)</li>
<li>Position papers (6-8 pages)</li>
<li>Short research papers (4-6 pages)</li>
<li>System/demo papers (4-6 pages)</li>
</ul>
</div>
</div>
<div class="row" style="margin-top: 40pt;">
<div class="col-md-8 col-md-offset-2">
<h3 class="title"><span style="color: #dd0a37;">Review and Publication</span></h3>
<p style="font-size: 14pt">
Please, share your contribution before the deadline through the <a href="https://openreview.net/group?id=eswc-conferences.org/ESWC/2019/Workshop/KGB">OpenReview</a> platform. The accepted contributions will be published in the proceedings of the workshop. Each accepted paper needs to be presented by one of the authors at the workshop.
</p>
</div>
</div>
<!-- row -->
</div>
<!-- /container -->
</div>
<!-- /About -->
<!-- Galery -->
<!-- <div id="galery">
<!-- container -->
<!-- <div class="container">
<!-- row -->
<!-- <div class="row">
<!-- galery owl -->
<!-- <div id="galery-owl" class="owl-carousel owl-theme">
<!-- galery item -->
<!-- <div class="galery-item">
<img src="./img/galery01.jpg" alt="">
</div>
<!-- /galery item -->
<!-- galery item -->
<!--<div class="galery-item">
<img src="./img/galery02.jpg" alt="">
</div>
<!-- /galery item -->
<!-- galery item -->
<!-- <div class="galery-item">
<img src="./img/galery03.jpg" alt="">
</div>
<!-- /galery item -->
<!-- </div>
<!-- /galery owl -->
<!--</div>
<!-- /row -->
<!--</div>
<!-- /container -->
<!--</div>
<!-- /Galery -->
<!-- Video CTA -->
<div id="program" class="section">
<!-- background image -->
<div class="section-bg" style="background-color:rgb(247, 247, 247);" data-stellar-background-ratio="0.5"></div>
<!-- /background image -->
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- cta content -->
<div class="col-md-8 col-md-offset-2">
<div class="section-title">
<h2 class="title" style="margin-bottom: 30pt;"><span>Program</span></h2>
</div>
<div class="event">
<div class="event-content">
<!--<p class="event-time"><i class="fa fa-clock-o"></i> 8 : 00 AM - 11 : 00 AM</p>-->
<h3 class="event-title">Keynote</h3>
<p style="font-size: 14pt;">The invited keynote speaker for the first edition of the KGB workshops is
<span style="color: #dd0a37;"><a href="https://sites.google.com/site/marianomuro/">Mariano Rodríguez-Muro</a></span>, Ontologist in the Knowledge Graph Schema team (Google)</p>
<!--<p>By <a href="#">John Doe</a></p>-->
</div>
</div>
<div class="event">
<div class="event-content">
<!--<p class="event-time"><i class="fa fa-clock-o"></i> 8 : 00 AM - 11 : 00 AM</p>-->
<h3 class="event-title">Accepted papers</h3>
<ul>
{% for paper in acceptedpapers %}
<li>
<a href="{{paper.review}}">{{paper.name}}</a> ({{paper.paperType}}) -
{% for author in paper.authors %}
{{author}}{% if forloop.last == false %},{% endif %}
{% endfor %}
</li>
{% endfor %}
</ul>
<!--<p>By <a href="#">John Doe</a></p>-->
</div>
</div>
<div id="schedule" class="event">
<div class="event-content">
<h3 class="event-title">Schedule</h3>
<h4>Session 1 (09:00 - 10:30): Knowledge Graph Generation</h4>
<ul>
<li>09:00 - 09:20 intro</li>
<li><span class="font-bold">09:20 - 09:40 In Use paper</span><br />
Building Knowledge Graphs from Survey Data: A Use Case in the Social Sciences
</li>
<li>
<span class="font-bold">09:40 - 10:00 In Use paper</span><br />
Building a Knowledge Graph for Products and Solutions in the Automation Industry
</li>
<li>
<span class="font-bold">10:00 - 10:20 Research paper</span><br />
Leveraging Ontologies for Knowledge Graph Schemas
</li>
<li>10:20 - 10:30 wrap up</li>
</ul>
<p class="schedule-break">10:30 - 11:00 coffee break</p>
<h4>Session 2 (11:00 - 12:30): KG Seen from the Eyes of Industries</h4>
<ul>
<li><span class="font-bold">11:00 - 12:00 Keynote: Mariano Rodriguez Muro</span></li>
<li>12:00 - 12:30 TBD</li>
</ul>
<p class="schedule-break">12:30 - 14:00 lunch break</p>
<h4>Session 3 (14:00 - 15:30): Mapping Languages</h4>
<ul>
<li>
<span class="font-bold">14:00 - 14:30 position paper</span> <br />
Mapping languages: analysis of comparative characteristics
</li>
<li>
<span class="font-bold">14:30 - 15:00 position paper</span> <br />
Extending RML to further embrace data source heterogeneity
</li>
<li>15:00 - 15:20 TBD</li>
<li>15:20 - 15:30 wrap up</li>
</ul>
<p class="schedule-break">15:30 - 16:00 coffee break</p>
<h4>Session 4 (16:00 - 17:00): Implementation/Application/Demo</h4>
<ul>
<li>
<span class="font-bold">16:00 - 16: 10 intro to test cases</span>
</li>
<li>
<span class="font-bold">16:10 - 16:30 In Use paper</span> <br />
RocketRML - A NodeJS implementation of a use-case specific RML mapper
</li>
<li>16:30 - 16:40 TBD</li>
<li>16:40 - 17:00 closing</li>
</ul>
<h4>20:00 workshop dinner</h4>
</div>
</div>
</div>
<!-- /cta content -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Video CTA -->
<!-- Important dates-->
<div id="important-dates" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title"><span>Important</span> <span style="color: #dd0a37;">dates</span></h3>
</div>
<!-- /section title -->
<div class="col-md-8 col-md-offset-2">
<div class="events-wrapper">
{% for importantDate in importantdates %}
<div class="event">
<div class="event-day">
<div>
<span class="day">{{importantDate.date.day}}</span>
<span class="year">{{importantDate.date.monthYear}}</span>
</div>
</div>
<div class="event-content">
<!--<p class="event-time"><i class="fa fa-clock-o"></i> 8 : 00 AM - 11 : 00 AM</p>-->
<h3 class="event-title">{{importantDate.title}}</h3>
<p>{{importantDate.description}}</p>
<!--<p>By <a href="#">John Doe</a></p>-->
</div>
</div>
{% endfor %}
</div>
<!--<div class="download-btn">-->
<!--<a href="#" class="main-btn">Download Schedule</a>-->
<!--</div>-->
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Event Schedule -->
<!-- Speakers -->
<div id="organization" class="section" style="background-color:rgb(247, 247, 247);">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title"><span style="color: black;">Organizers </span></h3>
</div>
<!-- section title -->
{% for person in organizers %}
<div class="col-md-4 col-sm-5">
<div class="speaker" data-togglre="modal" data-target="">
<div class="speaker-img">
<img src="{{ person.image }}" alt="">
</div>
<div class="speaker-body">
<div class="speaker-social">
<!--<a href="#"><i class="fa fa-facebook"></i></a>-->
<a href="{{ person.website }}"><i class="fa fa fa-home"></i></a>
<a href="mailto:{{ person.email }}"><i class="fa fa fa-envelope"></i></a>
<a href="https://twitter.com/{{ person.twitter }}"><i class="fa fa-twitter"></i></a>
<!--<a href="#"><i class="fa fa-instagram"></i></a>-->
<a href="{{ person.linkedin }}"><i class="fa fa fa-linkedin"></i></a>
</div>
<div class="speaker-content">
<h2>{{ person.name }}</h2>
<span>
{% if person.role != "" %}
{{ person.role }},
{% endif %}
{{ person.affiliation }}
</span>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Speakers -->
<!-- Sponsors -->
<div id="pc" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title"><span>Program</span> <span style="color: #dd0a37;">Committee</span></h3>
</div>
<!-- /section title -->
<!-- sponsor -->
<div class="col-md-8 col-sm-6 col-xs-8 col-md-offset-2 text-center" >
<ul class="list-group">
{% for person in programcommittee %}
<li class="list-group-item">{{person.name}}, {{person.affiliation}}</li>
{% endfor %}
</ul>
</div>
<!-- /sponsor -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Sponsors -->
<!-- CTA -->
<!-- Contact -->
<div id="contact" class="section" style="padding: 30pt !important; background-color: rgb(247, 247, 247);">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title" style="margin-bottom: 30pt !important;">
<h3 class="title"><span>How we</span> built the <span style="color: #dd0a37;">KGB Web Page</span></h3>
<h3>Eating our own dog food</h3>
</div>
<div class="col-md-6">
<h3 class="title"><span style="color: #dd0a37;">Tools</span></h3>
<p style="font-size: 14pt">
Most of the information showed on this website comes from the <a href="https://raw.githubusercontent.com/kgb-workshop/data/master/workshop-data.ttl">KGB2019 RDF Graph</a>. For generating
it, we use the <a href="http://rml.io/">RML suite</a> (<a href="https://github.com/RMLio/yarrrml-parser">YARRRML parser</a> and <a href="https://github.com/RMLio/rmlmapper-java">RML-Mapper</a>) and for querying it, we use the <a href="http://comunica.linkeddatafragments.org/">Comunica Framework</a>.
</p>
</div>
<div class="col-md-6">
<h3 class="title"><span style="color: #dd0a37;">Mappings and CSVs</span></h3>
<p style="font-size: 14pt">
Using the <a href="http://rml.io/yarrrml/">YARRRML specification</a>, we generate a <a href="https://raw.githubusercontent.com/kgb-workshop/data/master/mapping.yml">mapping</a> for building the RDF from the <a href="https://github.com/kgb-workshop/data/tree/master/csv">source CSVs</a>. Check the <a href="https://github.com/kgb-workshop/data">full workflow</a> and see how easy is to generate a Knowledge Graph using mapping languages!
</p>
</div>
</div>
<!-- /section title -->
<!-- contact
<div class="col-sm-6">
<div class="contact">
<h3><a href="https://twitter.com/rml_io">Twitter</a></h3>
</div>
</div>-->
<!-- /contact -->
<!-- contact
<div class="col-sm-4">
<div class="contact">
<h3><a href="">EasyChair</a></h3>
</div>
</div>-->
<!-- /contact -->
<!-- contact
<div class="col-sm-6">
<div class="contact">
<h3><a href="mailto:dchaves@fi.upm.es">Email</a></h3>
</div>
</div>-->
<!-- /contact -->
</div>
<!-- /row -->
</div>
<!-- /container -->
<!-- Map -->
<!--<div id="map"></div>-->
<!-- /Map -->
</div>
<!-- /Contact -->
<!-- Footer -->
<footer id="footer">
<!-- container -->
<div class="container">
<div class="row">
<div class="col-md-6">
<a class="twitter-timeline" data-width="500" data-height="430" href="https://twitter.com/kgbw_2019?ref_src=twsrc%5Etfw">Tweets by kgbw_2019</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="col-md-6" style="text-align: center;">
<h2 class="title"><span>Sponsors</span> </h2>
<h4>DATOS 4.0: RETOS Y SOLUCIONES - UPM <br> REF: TIN2016-78011-C4-4-R </h4>
<img src="./img/logoDatos.jpg" width="520px" style="margin-bottom: 15px">
<img src="./img/eufunder.png" width="400px">
</div>
</div>
<!-- row -->
<div class="row">
<!-- footer logo
<div class="col-md-4 col-md-push-4">
<div class="footer-brand">
<a class="logo" href="index.html">
<img class="logo-img" src="./img/rdf.png" alt="logo">
</a>
</div>
</div>-->
<!-- /footer logo -->
<div class="col-md-2">
<div class="contact-social">
<a href="http://twitter.com/kgbw_2019"><i class="fa fa-twitter"></i></a>
<a href="mailto:dchaves@fi.upm.es"><i class="fa fa-envelope"></i></a>
</div>
</div>
<!-- /contact social -->
<!-- copyright -->
<div class="col-md-7 col-md-offset-3">
<span class="copyright"><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="fa fa-heart-o" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></span>
</div>
<!-- /copyright -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</footer>
<!-- /Footer -->
<!-- jQuery Plugins -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/jquery.countTo.js"></script>
<script src="js/main.js"></script>
</body>
</html>