@@ -11,11 +11,7 @@ import Content from '#/components/widgets/Content.astro';
1111 }}
1212 heroProps ={ {
1313 subtitle: ' The Proceedings of the BPM 2025 Conference have been published at Springer and CEUR-WS.' ,
14- actions: [
15- { variant: ' primary' , text: ' BPM' , href: proceedings .bpm .href },
16- { variant: ' primary' , text: ' BPM Forum' , href: proceedings .bpmforum .href },
17- { variant: ' primary' , text: ' RBPM, PT, and Educators Forum' , href: proceedings .forums .href }
18- ]
14+ actions: Object .entries (proceedings ).map (([, p ]) => ({ variant: ' primary' , text: p .shorttitle , href: p .href }))
1915 }} >
2016 <Content >
2117 <Fragment slot =" content" >
@@ -25,30 +21,15 @@ import Content from '#/components/widgets/Content.astro';
2521 4 weeks through this page, starting <b >August 31</b >. Please find the proceedings here:
2622 </p >
2723 <ul class =" list-disc list-inside space-y-2" >
28- <li >
29- BPM 2025 main proceedings, { proceedings .bpm .volume } :{ ' ' }
30- <a href ={ proceedings .bpm .href } target =" _blank" rel =" noopener" class =" text-sky-600 underline" >
31- { proceedings .bpm .href }
32- </a >
33- </li >
34- <li >
35- BPM 2025 Forum, { proceedings .bpmforum .volume } :{ ' ' }
36- <a href ={ proceedings .bpmforum .href } target =" _blank" rel =" noopener" class =" text-sky-600 underline" >
37- { proceedings .bpmforum .href }
38- </a >
39- </li >
40- <li >
41- BPM 2025 Responsible BPM Forum, Process Technology Forum, Educators Forum,
42- { proceedings .forums .volume } :{ ' ' }
43- <a href ={ proceedings .forums .href } target =" _blank" rel =" noopener" class =" text-sky-600 underline" >
44- { proceedings .forums .href }
45- </a >
46- </li >
24+ { Object .entries (proceedings ).map (([, p ]) => (
25+ <li >
26+ { p .longtitle } , { p .volume } :{ ' ' }
27+ <a href = { p .href } target = " _blank" rel = " noopener" class = " text-sky-600 underline" >
28+ { p .href }
29+ </a >
30+ </li >
31+ ))}
4732 </ul >
48- <p >
49- The Proceedings of the Best Dissertation Award, Doctoral Consortium, and Demonstration &
50- Resources Forum will be published on CEUR-WS. They will be accessible from this webpage when available.
51- </p >
5233 <p >
5334 The BPM Workshop Proceedings 2025 will be published as post-proceedings at Springer. They will be accessible from this webpage when available.
5435 </p >
0 commit comments