This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 83c5947 remove references to old newsletter
83c5947 is described below
commit 83c5947efc298f67bb13eb4e895595f85ab9f323
Author: Paul King <[email protected]>
AuthorDate: Thu Sep 18 10:38:05 2025 +1000
remove references to old newsletter
---
site/src/site/includes/support-navbar.groovy | 3 +--
site/src/site/pages/groovy-weekly.groovy | 35 ----------------------------
site/src/site/pages/support.groovy | 8 +------
3 files changed, 2 insertions(+), 44 deletions(-)
diff --git a/site/src/site/includes/support-navbar.groovy
b/site/src/site/includes/support-navbar.groovy
index 83c9b26..e6c2456 100644
--- a/site/src/site/includes/support-navbar.groovy
+++ b/site/src/site/includes/support-navbar.groovy
@@ -7,8 +7,7 @@ ul(class: 'nav-sidebar') {
'mailing-lists': 'Mailing-lists',
'events': 'Events',
'usergroups': 'User groups',
- 'thanks': 'Thanks',
- 'groovy-weekly': 'Groovy newsletter'
+ 'thanks': 'Thanks'
].each { page, label ->
if (currentPage == page) {
li(class: 'active') { a(href: relative("${page}.html")) {
strong(label) } }
diff --git a/site/src/site/pages/groovy-weekly.groovy
b/site/src/site/pages/groovy-weekly.groovy
deleted file mode 100644
index a28850a..0000000
--- a/site/src/site/pages/groovy-weekly.groovy
+++ /dev/null
@@ -1,35 +0,0 @@
-layout 'layouts/main.groovy', true,
- pageTitle: 'The Apache Groovy programming language - Groovy
newsletter',
- mainContent: contents {
- div(id: 'content', class: 'page-1') {
- div(class: 'row') {
- div(class: 'row-fluid') {
- div(class: 'col-lg-3') {
- include template: 'includes/support-navbar.groovy'
- }
-
- div(class: 'col-lg-8 col-lg-pull-0') {
- include template:
'includes/contribute-button.groovy'
- h1 {
- i(class: 'fa fa-envelope-o') {}
- yield ' Groovy Newsletter '
- }
- article {
- p 'The Groovy newsletter is no longer produced
on a regular basis but you can still view the archives:'
- ul {
- li {
- a(href:
'https://glaforge.dev/tags/groovy-weekly/',
- 'View past editions of the
Groovy newsletter.')
- }
- }
- p {
- yield 'Be sure to check out the other
available places for '
- a(href: 'support.html', 'Groovy support')
- yield '.'
- }
- }
- }
- }
- }
- }
- }
diff --git a/site/src/site/pages/support.groovy
b/site/src/site/pages/support.groovy
index 34ee8ad..05d942a 100644
--- a/site/src/site/pages/support.groovy
+++ b/site/src/site/pages/support.groovy
@@ -26,14 +26,8 @@ layout 'layouts/main.groovy', true,
}
p '''
If you click on the socialize link in the
menu, you will also find other ways to interact
- with the Groovy community, and follow the
news around the ecosystem:
+ with the Groovy community, and follow the
news around the ecosystem.
'''
- ul {
- li {
- a(href: 'groovy-weekly.html', 'Groovy
newsletter')
- yieldUnescaped ' — links to
articles, presentations, tweets, podcasts, etc.'
- }
- }
}
hr(class: 'divider')
}