Skip to content

Commit 8a36a00

Browse files
Update projects.md
1 parent e16e4ef commit 8a36a00

File tree

1 file changed

+75
-55
lines changed

1 file changed

+75
-55
lines changed

_pages/projects.md

Lines changed: 75 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,85 @@
11
---
2-
layout: page
3-
title: Research
4-
permalink: /projects/
5-
description: A growing collection of your cool projects.
6-
nav: true
7-
nav_order: 3
8-
display_categories: [work]
9-
horizontal: true
2+
title: "Secure Learning and Control Lab - Research"
3+
layout: gridlay2
4+
excerpt: "Secure Learning and Control Lab -- Research"
5+
sitemap: false
6+
tags: [10001, 10002,10003, 10004, 10005, 10006]
7+
permalink: /research/
108
---
119

12-
<!-- pages/projects.md -->
13-
<div class="projects">
14-
{% if site.enable_project_categories and page.display_categories %}
15-
<!-- Display categorized projects -->
16-
{% for category in page.display_categories %}
17-
<a id="{{ category }}" href=".#{{ category }}">
18-
<h2 class="category">{{ category }}</h2>
19-
</a>
20-
{% assign categorized_projects = site.projects | where: "category", category %}
21-
{% assign sorted_projects = categorized_projects | sort: "importance" %}
22-
<!-- Generate cards for each project -->
23-
{% if page.horizontal %}
24-
<div class="container">
25-
<div class="row row-cols-1 row-cols-md-2">
26-
{% for project in sorted_projects %}
27-
{% include projects_horizontal.liquid %}
28-
{% endfor %}
29-
</div>
30-
</div>
31-
{% else %}
32-
<div class="row row-cols-1 row-cols-md-3">
33-
{% for project in sorted_projects %}
34-
{% include projects.liquid %}
35-
{% endfor %}
36-
</div>
37-
{% endif %}
38-
{% endfor %}
39-
40-
{% else %}
10+
# Research Areas
11+
{% assign paper_show = true %}
4112

42-
<!-- Display projects without categories -->
4313

44-
{% assign sorted_projects = site.projects | sort: "importance" %}
14+
{% assign number_printed = 0 %}
15+
{% for theme-item in site.data.research_themes %}
4516

46-
<!-- Generate cards for each project -->
17+
{% assign even_odd = number_printed | modulo: 2 %}
18+
{% if theme-item.highlight == 1 %}
4719

48-
{% if page.horizontal %}
49-
50-
<div class="container">
51-
<div class="row row-cols-1 row-cols-md-2">
52-
{% for project in sorted_projects %}
53-
{% include projects_horizontal.liquid %}
54-
{% endfor %}
55-
</div>
56-
</div>
57-
{% else %}
58-
<div class="row row-cols-1 row-cols-md-3">
59-
{% for project in sorted_projects %}
60-
{% include projects.liquid %}
61-
{% endfor %}
62-
</div>
20+
{% if even_odd == 0 %}
21+
<div class="row">
22+
{% endif %}
23+
{% if theme-item.long == 1 %}
24+
<div class="col-sm-12 clearfix">
25+
<div class="well">
26+
{% if theme-item.hasimage == 1 %}
27+
<img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ theme-item.image }}" class="img-responsive" width="{{ theme-item.width }}" style="float: top"/>
6328
{% endif %}
29+
<h3><pubtit>{{ theme-item.title }}</pubtit></h3>
30+
<p>{{ theme-item.description }}</p>
31+
<p>Team members: <em>{{ theme-item.authors }}</em></p>
32+
<p class="text-danger"><strong> {{ theme-item.news1 }}</strong></p>
33+
<p> {{ theme-item.news2 }}</p>
34+
<a data-toggle="collapse" href="#{{theme-item.key}}-bib" class="btn-bib" style="text-decoration:none; color:#ebebeb; hover:#ebebeb;" role="button" aria-expanded="false">Selected papers</a>
35+
<div class="collapse" id="{{theme-item.key}}-bib"><div class="well-abs"><div class="publications">
36+
{%- for y in page.tags %}
37+
{%- if y == theme-item.tag -%}
38+
{% bibliography -f uscl_publications -q @*[tag={{y}}]* %}
39+
{% endif %}
40+
{% endfor %}
41+
</div></div></div>
42+
</div>
43+
</div>
44+
</div>
45+
{% else %}
46+
<div class="col-sm-6 clearfix">
47+
<div class="well">
48+
{% if theme-item.hasimage == 1 %}
49+
<img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ theme-item.image }}" class="img-responsive" width="{{ theme-item.width }}" style="float: top"/>
50+
{% endif %}
51+
<h3><pubtit>{{ theme-item.title }}</pubtit></h3>
52+
{{ theme-item.description }}
53+
<p>Team members: <em>{{ theme-item.authors }}</em></p>
54+
<p class="text-danger"><strong> {{ theme-item.news1 }}</strong></p>
55+
<p> {{ theme-item.news2 }}</p>
56+
<a data-toggle="collapse" href="#{{theme-item.key}}-bib" class="btn-bib" style="text-decoration:none; color:#ebebeb; hover:#ebebeb;" role="button" aria-expanded="false">Selected papers</a>
57+
<div class="collapse" id="{{theme-item.key}}-bib"><div class="well-abs"><div class="publications">
58+
{%- for y in page.tags %}
59+
{%- if y == theme-item.tag or y == theme-item.taga -%}
60+
{% bibliography -f uscl_publications -q @*[tag={{y}} || taga={{y}}]]* %}
61+
{% endif %}
62+
{% endfor %}
63+
</div></div></div>
64+
</div>
65+
</div>
66+
{% assign number_printed = number_printed | plus: 1 %}
67+
{% if even_odd == 1 %}
68+
</div>
69+
{% endif %}
70+
71+
{% endif %}
6472
{% endif %}
73+
{% endfor %}
74+
75+
{% assign even_odd = number_printed | modulo: 2 %}
76+
{% if even_odd == 1 %}
6577
</div>
78+
{% endif %}
79+
80+
<p> &nbsp; </p>
81+
82+
83+
[//]: # (**Watermarking schemes for attack detection:**)
84+
85+
### ... and more.

0 commit comments

Comments
 (0)