Skip to content

Commit fb995dd

Browse files
update menu bar and section names
1 parent ddb1484 commit fb995dd

2 files changed

Lines changed: 30 additions & 81 deletions

File tree

_config.yml

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,33 @@ title: Fast Machine Learning Foundation
22
short_title: FastML Foundation
33
email: fml@fastmachinelearning.org
44

5-
one_liner: Real-time and accelerated ML for fundamental sciences
5+
one_liner: A non-profit foundation advancing real-time and accelerated ML for fundamental sciences
66
description: >
7-
Fast ML Lab is a research collective of physicists, engineers, and computer scientists
8-
interested in deploying machine learning algorithms for unique and challenging scientific applications. Our projects
9-
range from real-time, on-detector and low latency machine learning applications to high-throughput
10-
heterogeneous computing big data challenges. We are interested in deploying sophisticated machine
11-
learning algorithms to advance the exploration of fundamental physics from the world's biggest colliders
12-
to the most intense particle beams to the cosmos.
7+
Fast Machine Learning Foundation is a non-profit created to develop tools and training for machine learning
8+
algorithms in unique and challenging scientific applications. We bring together physicists, engineers, and
9+
computer scientists to build and deploy real-time, on-detector, low-latency systems and high-throughput
10+
heterogeneous computing workflows that enable discovery from the world's biggest colliders to the cosmos.
1311
news_byline: >
14-
It's official! The registration and call for abstracts for the [2022 workshop](https://indico.cern.ch/event/1156222/) is now open. It will be a hybrid workshop hosted by Southern Methodist University from Oct 3 -- Oct 6, 2022.
15-
To see past editions, visit our [virtual 2020 workshop](https://indico.cern.ch/event/924283/) and [2019 workshop](https://indico.cern.ch/event/822126/) webpages.
12+
We share upcoming and recent events for the community.
1613
1714
collaboration:
18-
byline: We are a community that fosters knowledge transfer of accelerated and real-time artificial intelligence applications to fundamental science. By joining the community, you agree to abide by our codes of conduct and policies of collaboration.
15+
byline: We are a community that fosters knowledge transfer of accelerated and real-time artificial intelligence for fundamental science. By participating, you agree to abide by our code of conduct and collaboration policies.
1916

2017
navbar:
2118
logo: /images/fml.png
2219
links:
23-
- name: Home
24-
link: "#home" # Note that for links to autoscroll to anchors on the main page, only the #anchor is needed (no preceding slash)
20+
- name: About
21+
link: "#about" # Note that for links to autoscroll to anchors on the main page, only the #anchor is needed (no preceding slash)
2522
autoscroll: true
26-
- name: News
27-
link: "#news"
28-
autoscroll: true
29-
- name: Papers/Talks
30-
link: "#projects"
31-
autoscroll: true
32-
- name: People
33-
link: "#people"
23+
- name: Events
24+
link: "#events"
3425
autoscroll: true
3526
- name: Collaboration
3627
link: "#collaboration"
3728
autoscroll: true
29+
- name: Resources
30+
link: "#resources"
31+
autoscroll: true
3832
- name: Sponsors/Partners
3933
link: "#sponsors"
4034
autoscroll: true

index.html

Lines changed: 16 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<body class="bg-light" data-bs-spy="scroll" data-bs-target="#navbar-global">
88
{% include nav.html %}
99
<div class="bg-dark container-fluid">
10-
<div class="container col-xxl-8 px-4 py-5 " id="home">
10+
<div class="container col-xxl-8 px-4 py-5 " id="about">
1111
<div class="row flex-lg-row-reverse align-items-center justify-content-center g-5 py-5">
1212
<div class="col-8 col-sm-8 col-lg-6">
1313
<img src="{{ site.baseurl }}/images/fml2.png" class="d-block mx-lg-auto img-fluid" alt="Test" width="350" height="250"
@@ -23,8 +23,8 @@ <h4 class="lh-1 mb-3">{{site.one_liner}}</h4>
2323
</div>
2424
</div>
2525
<div class="bg-light container-fluid">
26-
<div class="px-4 my-5 " id="news">
27-
<h1 class="display-5 fw-bold text-center">News</h1>
26+
<div class="px-4 my-5 " id="events">
27+
<h1 class="display-5 fw-bold text-center">Events</h1>
2828
<div class="col-lg-6 mx-auto text-center">
2929
<p class="lead mb-4">{{ site.news_byline | markdownify }}</p>
3030
</div>
@@ -58,63 +58,6 @@ <h4 class="card-title text-center">{{post.title}}</h4>
5858

5959

6060

61-
<div class="bg-primary container-fluid">
62-
<div class="px-4 pt-5 my-5 text-center text-light" id="projects">
63-
<h1 class="display-5 fw-bold">Papers</h1>
64-
<div class="col-lg-8 text-start mx-auto">
65-
<ul class="citation-list">
66-
{% for paper in site.data.papers %}
67-
<li class="citation-list-item lead"> {{ paper | markdownify }} </li>
68-
{% endfor %}
69-
</ul>
70-
</div>
71-
</div>
72-
<div class="px-4 pt-2 pb-5 my-5 text-center text-light">
73-
<h1 class="display-5 fw-bold">Talks</h1>
74-
<div class="col-lg-8 text-start mx-auto">
75-
<ul class="citation-list">
76-
{% for talk in site.data.talks %}
77-
<li class="citation-list-item lead"> {{ talk | markdownify }} </li>
78-
{% endfor %}
79-
</ul>
80-
</div>
81-
</div>
82-
</div>
83-
<div class="bg-light container-fluid">
84-
<div class="px-4 py-5 my-5 text-center" id="people">
85-
<h1 class="display-5 fw-bold pb-5">People</h1>
86-
<div class="col-lg-6 mx-auto">
87-
<hr>
88-
{% assign sorted_orgs = site.data.people | sort %}
89-
{% for org in sorted_orgs %}
90-
<h4> {{ org[0] | replace: '_', ' ' | upcase }} </h4>
91-
{% assign sorted_people = org[1] | sort %}
92-
{% for person in sorted_people %}
93-
<a href="javascript:showhide('{{ org[0] | replace: ' ', '_' }}-{{ person[0] | replace: ' ', '_' }}')">
94-
{{ person[1].name }}</a>
95-
({% if person[1].degree != "" and person[1].degree != null %}{{person[1].degree }},
96-
{% endif %}
97-
{{ person[1].field }});&nbsp;
98-
{% endfor %}
99-
100-
{% for person in sorted_people %}
101-
<div id="{{ org[0] | replace: ' ', '_' }}-{{ person[0] | replace: ' ', '_' }}" style="display:none;">
102-
<br>
103-
<ul>
104-
<li> <b>Position</b>: {{ person[1].position }} </li>
105-
<li> <b>Interests</b>: {{ person[1].interests }} </li>
106-
</ul>
107-
{% if person[1].image != "" and person[1].image != null %}
108-
<a href="{{ person[1].image }}" class="image image-centered"><img src="{{ person[1].image }}"
109-
height="300" alt="" /></a>
110-
{% endif %}
111-
</div>
112-
{% endfor %}
113-
<hr>
114-
{% endfor %}
115-
</div>
116-
</div>
117-
</div>
11861
<div class="bg-primary container-fluid">
11962
<div class="px-4 py-5 my-5 text-center text-light" id="collaboration">
12063
<h1 class="display-5 fw-bold">Collaboration</h1>
@@ -126,6 +69,18 @@ <h1 class="display-5 fw-bold">Collaboration</h1>
12669
</div>
12770
</div>
12871
</div>
72+
<div class="bg-light container-fluid">
73+
<div class="px-4 py-5 my-5 text-center" id="resources">
74+
<h1 class="pb-4 display-5 fw-bold">Resources</h1>
75+
<div class="col-lg-6 mx-auto">
76+
<ul class="list-group list-group-flush">
77+
{% for resource in site.footer.links %}
78+
<li class="list-group-item"><a href="{{ resource.link }}">{{ resource.name }}</a></li>
79+
{% endfor %}
80+
</ul>
81+
</div>
82+
</div>
83+
</div>
12984
<div class="bg-light container-fluid">
13085
<div class="px-4 py-5 my-5 text-center" id="sponsors">
13186
<h1 class="pb-4 display-5 fw-bold">Sponsors and Partners</h1>
@@ -156,4 +111,4 @@ <h1 class="pb-4 display-5 fw-bold">Sponsors and Partners</h1>
156111
<script>
157112

158113
</script>
159-
</body>
114+
</body>

0 commit comments

Comments
 (0)