This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/comdev-events-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 6ef8848  HTML syntax (w3 validator)
6ef8848 is described below

commit 6ef884860c3c5a2ddbdda8b15f256000f4c8a6a4
Author: Sebb <[email protected]>
AuthorDate: Sun Nov 30 13:57:37 2025 +0000

    HTML syntax (w3 validator)
---
 layouts/_default/baseof.html | 6 +++---
 layouts/partials/footer.html | 4 ++--
 source/_index.md             | 9 +++++----
 source/event/__index.md      | 5 +++--
 static/js/events-calendar.js | 4 ++--
 5 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index b818485..fe8ed29 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -16,10 +16,10 @@
     limitations under the License.
 -->
 
-<html>
+<html lang="en">
 <head>
-  <meta name="description" content="Apache Events"/>
-  <meta name="keywords" content="apache, apache events, apache community, 
opensource"/>
+  <meta name="description" content="Apache Events">
+  <meta name="keywords" content="apache, apache events, apache community, 
opensource">
 
   <title>{{ .Title }}</title>
 
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 9d9867e..aa144f8 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -3,9 +3,9 @@
       <p>
         Copyright &copy; {{ now.Year }} The Apache Software Foundation, 
Licensed under
         the <a href="https://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.
-        <br />
+        <br>
         Apache and the Apache logo are trademarks of The Apache Software 
Foundation.
-        <br />
+        <br>
         This website is generated from the
         <a 
href="https://github.com/apache/comdev-events-site";>comdev-events-site</a>
         repository.
diff --git a/source/_index.md b/source/_index.md
index b7f10ea..a061b0c 100644
--- a/source/_index.md
+++ b/source/_index.md
@@ -3,7 +3,7 @@ title: Apache Software Foundation Events
 ---
 
 <link href="/_pagefind/pagefind-ui.css" rel="stylesheet">
-<script src="/_pagefind/pagefind-ui.js" type="text/javascript"></script>
+<script src="/_pagefind/pagefind-ui.js"></script>
 <div id="search"></div>
 <script>
     window.addEventListener('DOMContentLoaded', (event) => {
@@ -26,10 +26,11 @@ assistance for selected ASF events, to those who would 
otherwise be unable to at
 
 ## Upcoming Events
 
-<ul id="events">
 <noscript>
- <li><i>Sorry, this requires Javascript</i></li>
+ <i>Sorry, this requires Javascript</i>
 </noscript>
+
+<ul id="events">
 </ul>
 
 Follow us on Twitter at [@ApacheCon](https://twitter.com/apachecon) for
@@ -43,7 +44,7 @@ Foundation events.</em>
 ## Past Events & Get Involved
 
   - See the [past ASF events](https://apachecon.com/history.html), stretching 
back to 1998!
-  - Want to get involved? [Volunteers are 
welcome](https:////events.apache.org/involved/) on a variety of tasks.
+  - Want to get involved? [Volunteers are 
welcome](https://events.apache.org/involved/) on a variety of tasks.
   - Running your own Apache-branded event? Be sure to [get trademark 
permission](//www.apache.org/foundation/marks/events.html).
   - [Promote upcoming ASF events](https://www.apachecon.com/event-images/) on 
your personal or project website.
 
diff --git a/source/event/__index.md b/source/event/__index.md
index b64eb3b..25aa40c 100644
--- a/source/event/__index.md
+++ b/source/event/__index.md
@@ -9,10 +9,11 @@ This is the list of upcoming official Apache events, and
 those events which have been approved to use Apache Marks under the
 [Third Party Event Branding Policy][1].
 
-<ul id="events">
 <noscript>
- <li><i>Sorry, this requires Javascript</i></li>
+ <i>Sorry, this requires Javascript</i>
 </noscript>
+
+<ul id="events">
 </ul>
 
 For a complete list of events see our [calendar](calendar.html).
diff --git a/static/js/events-calendar.js b/static/js/events-calendar.js
index db1fc24..0cef93f 100644
--- a/static/js/events-calendar.js
+++ b/static/js/events-calendar.js
@@ -55,10 +55,10 @@ $.ajax({
              if (link) { html += "</a>"; }
              html += " - <a href='" + ev.htmlLink + "'><i>" + when + 
"</i></a>";
              if (ev.description && !link) { // add description if not already 
used
-               html += "<br/>" + ev.description;
+               html += "<br>" + ev.description;
              }
              if (ev.location) {
-                html += "<br/>"+ev.location;
+                html += "<br>"+ev.location;
              }
              events.append(html);
           }

Reply via email to