Skip to content

Commit 31f5264

Browse files
committed
update several things
1 parent 8bb0582 commit 31f5264

File tree

38 files changed

+832
-514
lines changed

38 files changed

+832
-514
lines changed

_layouts/home.html

Lines changed: 134 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,141 @@
33
bodyClass: "page-home"
44
---
55

6-
<div class="intro">
7-
<div class="container">
6+
<!-- Include Animate.css (CDN) for simple animations -->
7+
<link
8+
rel="stylesheet"
9+
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
10+
/>
11+
12+
<!-- INTRO SECTION with Animation-->
13+
<div class="intro animate__animated animate__fadeInUp">
14+
<div class="container intro-container">
815
<div class="row justify-content-start">
9-
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1">
16+
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1 intro-text">
1017
{{ content }}
1118
{% if page.show_call_box %}
1219
{% include call.html show_button=true %}
1320
{% endif %}
1421
</div>
1522
{% if page.intro_image %}
1623
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative">
17-
<img alt="{{ page.title }}" class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relURL }}" />
24+
<img
25+
alt="{{ page.title }}"
26+
class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}"
27+
src="{{ page.intro_image | relURL }}"
28+
/>
1829
</div>
1930
{% endif %}
2031
</div>
2132
</div>
2233
</div>
2334

35+
<!-- NEW STRIP WITH SIDEBAR: Next event & Latest News -->
36+
<div class="strip strip-news animate__animated animate__fadeInUp">
37+
<div class="container pt-6 pb-6 pb-md-10">
38+
<div class="row justify-content-start">
39+
40+
<!-- Main Column: "Next Event" (controllable content) -->
41+
<div class="col-12 col-md-8 event-section">
42+
<h2 class="event-title">Next Event!!</h2>
43+
<!-- Add more details about the event here -->
44+
<p class="event-description">
45+
Stay tuned for our upcoming Continual Learning seminar on
46+
<strong>Thursday, January 30th, at 6 PM CET / 9 AM PT / 12 AM ET</strong>!<br/>
47+
We’ll host a Task-agnostic continual learning for the open world topic.
48+
</p>
49+
<p class="event-link">
50+
<a href="https://example.com/event-registration" class="btn btn-primary" target="_blank" rel="noopener">
51+
Learn More & Register
52+
</a>
53+
</p>
54+
</div>
55+
56+
<!-- Sidebar Column: Latest News -->
57+
<aside class="col-12 col-md-4 news-sidebar-wrapper">
58+
<div class="news-sidebar">
59+
<h3>Latest News</h3>
60+
<ul>
61+
<!-- Add or remove <li> items to easily update news -->
62+
<li>
63+
<strong>Jan 16, 2025:</strong> New tutorial on
64+
<em>Avalanche library</em> is now live!
65+
</li>
66+
<li>
67+
<strong>Dec 25, 2024:</strong> Holiday release of our
68+
<em>new version</em> featuring advanced metrics.
69+
</li>
70+
<li>
71+
<strong>Dec 01, 2024:</strong> <em>CL Workshop</em> submission
72+
deadline extended!
73+
</li>
74+
</ul>
75+
</div>
76+
</aside>
77+
78+
</div>
79+
</div>
80+
</div>
81+
82+
<!-- Inline CSS to style our intro and news strip -->
83+
<style>
84+
85+
/* EVENT + NEWS STYLES */
86+
.strip-news {
87+
background: #fafafa; /* or your preferred background color */
88+
border-top: 1px solid #eee;
89+
border-bottom: 1px solid #eee;
90+
}
91+
92+
/* Event Section */
93+
.event-section {
94+
margin-bottom: 2rem;
95+
}
96+
.event-title {
97+
font-size: 2rem;
98+
margin-bottom: 1rem;
99+
font-weight: 600;
100+
}
101+
.event-description {
102+
font-size: 1.1rem;
103+
line-height: 1.6;
104+
}
105+
.event-link .btn.btn-primary {
106+
margin-top: 0.5rem;
107+
}
108+
109+
/* News Sidebar */
110+
.news-sidebar-wrapper {
111+
margin-top: 2rem;
112+
}
113+
.news-sidebar {
114+
background: #fff;
115+
border: 1px solid #ddd;
116+
border-radius: 4px;
117+
padding: 1.5rem;
118+
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
119+
}
120+
.news-sidebar h3 {
121+
margin-top: 0;
122+
margin-bottom: 1rem;
123+
font-size: 1.5rem;
124+
}
125+
.news-sidebar ul {
126+
list-style-type: none;
127+
padding-left: 0;
128+
margin: 0;
129+
}
130+
.news-sidebar li {
131+
margin-bottom: 1rem;
132+
}
133+
.news-sidebar li strong {
134+
color: #dc2430;
135+
}
136+
</style>
137+
138+
139+
140+
<!-- Services Strip (unchanged) -->
24141
<div class="strip">
25142
<div class="container pt-6 pb-6 pb-md-10">
26143
<div class="row justify-content-start">
@@ -40,30 +157,39 @@ <h2 class="service-title">
40157
</div>
41158
<div class="row justify-content-center">
42159
<div class="col-auto">
43-
<a class="button button-primary" href="{{ "services" | relative_url }}">View All Services</a>
160+
<a class="button button-primary" href="{{ "services" | relative_url }}">
161+
View All Services
162+
</a>
44163
</div>
45164
</div>
46165
</div>
47166
</div>
48167

49168
{% if site.data.features %}
169+
<!-- Features Strip (unchanged) -->
50170
<div class="strip strip-grey">
51171
<div class="container pt-6 pb-6 pt-md-10 pb-md-10">
52172
<div class="row justify-content-center">
53-
54173
{% for feature in site.data.features %}
55174
<div class="col-12 col-md-6 col-lg-4 mb-2">
56175
<div class="feature">
57176
{% if feature.image %}
58-
<div class="feature-image"><img alt="{{ feature.title }} logo" src="{{ feature.image.url | relative_url }}" width="{{ feature.image.width }}" height="{{ feature.image.height }}" /></div>
177+
<div class="feature-image">
178+
<img
179+
alt="{{ feature.title }} logo"
180+
src="{{ feature.image.url | relative_url }}"
181+
width="{{ feature.image.width }}"
182+
height="{{ feature.image.height }}"
183+
/>
184+
</div>
59185
{% endif %}
60186
<h2 class="feature-title">{{ feature.title }}</h2>
61187
<div class="feature-content">{{ feature.description }}</div>
62188
</div>
63189
</div>
64190
{% endfor %}
65-
66191
</div>
67192
</div>
68193
</div>
69194
{% endif %}
195+

_layouts/page.html

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,27 @@
33
bodyClass: "page-basic"
44
---
55

6+
<!-- Include Animate.css (CDN) for animations -->
7+
<link
8+
rel="stylesheet"
9+
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
10+
/>
11+
612
<div class="container pb-6 pt-6 pt-md-10 pb-md-10">
7-
<div class="row justify-content-start">
8-
<div class="col-12 col-md-8">
9-
<div class="service service-single">
10-
<h1 class="title">{{page.title}}</h1>
11-
<div class="content">{{content}}</div>
12-
</div>
13+
<div class="row justify-content-start">
14+
<div class="col-12 col-md-8">
15+
<div class="service service-single animate__animated animate__fadeInUp">
16+
<!-- Title Section -->
17+
<h1 class="title text-center text-md-start mb-4">
18+
{{ page.title }}
19+
</h1>
20+
21+
<!-- Content Section -->
22+
<div class="content">
23+
{{ content }}
1324
</div>
25+
</div>
1426
</div>
15-
</div>
27+
</div>
28+
</div>
29+

_layouts/page_no_eff.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
bodyClass: "page-basic"
4+
---
5+
6+
<div class="container pb-6 pt-6 pt-md-10 pb-md-10">
7+
<div class="row justify-content-start">
8+
<div class="col-12 col-md-8">
9+
<div class="service service-single">
10+
<h1 class="title">{{page.title}}</h1>
11+
<div class="content">{{content}}</div>
12+
</div>
13+
</div>
14+
</div>
15+
</div>

_layouts/services.html

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,37 @@
33
bodyClass: "page-services"
44
---
55

6+
<!-- Include Animate.css (CDN) for animations -->
7+
<link
8+
rel="stylesheet"
9+
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
10+
/>
11+
12+
<!-- INTRO SECTION with Animation -->
613
<div class="intro">
714
<div class="container">
815
<div class="row justify-content-start">
9-
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1">
16+
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1 animate__animated animate__fadeInLeft">
1017
{{ content }}
1118
</div>
1219
{% if page.intro_image %}
13-
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative">
14-
<img alt={{ page.title }} class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relative_url }}" />
20+
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative animate__animated animate__fadeInRight">
21+
<img
22+
alt="{{ page.title }}"
23+
class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}"
24+
src="{{ page.intro_image | relative_url }}"
25+
/>
1526
</div>
1627
{% endif %}
1728
</div>
1829
</div>
1930
</div>
2031

32+
<!-- SERVICES SECTION -->
2133
<div class="container pt-6 pb-6">
2234
<div class="row">
2335
{% for service in site.services %}
24-
<div class="col-12 col-md-6 mb-3">
36+
<div class="col-12 col-md-6 mb-3 animate__animated animate__fadeInUp">
2537
<div class="service service-summary">
2638
<div class="service-content">
2739
<h2 class="service-title">

_layouts/teams.html

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,33 @@
33
bodyClass: "page-teams"
44
---
55

6+
<!-- Include Animate.css (CDN) for animations -->
7+
<link
8+
rel="stylesheet"
9+
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
10+
/>
11+
12+
<!-- INTRO SECTION with Animation -->
613
<div class="intro">
7-
<div class="container">
8-
<div class="row justify-content-start">
9-
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1">
10-
{{ content }}
11-
</div>
12-
{% if page.intro_image %}
13-
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative">
14-
<img alt={{ page.title }} class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relative_url }}" />
15-
</div>
16-
{% endif %}
17-
</div>
14+
<div class="container">
15+
<div class="row justify-content-start">
16+
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1 animate__animated animate__fadeInLeft">
17+
{{ content }}
18+
</div>
19+
{% if page.intro_image %}
20+
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative animate__animated animate__fadeInRight">
21+
<img
22+
alt="{{ page.title }}"
23+
class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}"
24+
src="{{ page.intro_image | relative_url }}"
25+
/>
26+
</div>
27+
{% endif %}
1828
</div>
29+
</div>
1930
</div>
2031

32+
2133
<div class="container pt-6 pb-6">
2234
<div class="row">
2335
{% assign promoted_teams = site.team | where: "promoted", true | sort: "weight" %}

_services/Avalanche.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Avalanche"
33
date: 2024-10-24T12:33:46+10:00
4-
weight: 2
4+
weight: 3
55
---
66

77
[Avalanche](https://avalanche.continualai.org) is an open-source, end-to-end continual learning library developed by ContinualAI to accelerate research and development in continual learning. Built on PyTorch, Avalanche provides a **comprehensive framework** for prototyping, training, and evaluating continual learning algorithms, making it easier for researchers and practitioners to advance their work in the field.

_services/Course.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Continual Learning Course"
33
date: 2024-10-24T12:33:46+10:00
4-
weight: 1
4+
weight: 4
55
---
66

77
Continual learning is a pivotal area in artificial intelligence, focusing on developing systems capable of learning and adapting over time without forgetting previous knowledge. To advance education and research in this field, two comprehensive courses are available:

0 commit comments

Comments
 (0)