Skip to content

Commit 6a9dadd

Browse files
committed
test
1 parent 46adcca commit 6a9dadd

3 files changed

Lines changed: 124 additions & 29 deletions

File tree

assets/css/custom.css

Lines changed: 93 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,30 @@ html.dark .article-card .summary {
380380
text-transform: none !important;
381381
}
382382

383+
/* Make "experience" and "education" titles small capitals on about page - Very aggressive targeting */
384+
.blox-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:first-of-type,
385+
.blox-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:nth-of-type(2),
386+
.blox-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:first-child,
387+
.blox-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:nth-child(2),
388+
#section-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:first-of-type,
389+
#section-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:nth-of-type(2),
390+
#section-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:first-child,
391+
#section-resume-experience h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:nth-child(2) {
392+
font-variant: small-caps !important;
393+
text-transform: lowercase !important;
394+
font-feature-settings: "smcp" !important;
395+
}
396+
397+
/* Even more aggressive targeting for small capitals */
398+
h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:first-of-type,
399+
h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:nth-of-type(2),
400+
h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:first-child,
401+
h3.mb-6.text-3xl.font-bold.text-gray-900.dark\\:text-white.text-center:nth-child(2) {
402+
font-variant: small-caps !important;
403+
text-transform: lowercase !important;
404+
font-feature-settings: "smcp" !important;
405+
}
406+
383407
/* Wider content layout for landing page - same as publications page */
384408
.type-landing .container,
385409
.type-landing .hbx-container,
@@ -583,8 +607,73 @@ html.dark .hbx-main-content {
583607
background-color: #2d3748 !important; /* Dark gray background */
584608
}
585609

586-
/* Override Hugo Blox default dark background */
587-
.dark,
588-
html.dark {
589-
background-color: #2d3748 !important; /* Dark gray background */
610+
/* Hide Hugo Blox branding and template buttons */
611+
.hugo-blox-branding,
612+
.hugo-blox-attribution,
613+
.template-button,
614+
[data-hugo-blox-branding],
615+
[data-template-button],
616+
.powered-by-hugo-blox,
617+
.template-link,
618+
.footer-branding,
619+
.branding-footer {
620+
display: none !important;
621+
}
622+
623+
/* Hide any remaining template buttons or branding */
624+
a[href*="hugoblox"],
625+
a[href*="template"],
626+
button[data-template],
627+
.template-info,
628+
.branding-info {
629+
display: none !important;
630+
}
631+
632+
/* Hide "Made with" branding elements */
633+
.made-with,
634+
.made-with-text,
635+
[data-made-with],
636+
.made-with-hugo,
637+
.made-with-hugoblox,
638+
.made-with-template,
639+
.text-made-with,
640+
.footer-made-with {
641+
display: none !important;
642+
}
643+
644+
/* Hide any text containing "Made with" */
645+
*:contains("Made with"),
646+
*:contains("made with"),
647+
*:contains("Built with"),
648+
*:contains("built with") {
649+
display: none !important;
650+
}
651+
652+
/* Hide specific Hugo Blox footer elements */
653+
footer a[href*="hugoblox.com"],
654+
footer a[data-hbx="poweredby_brand"],
655+
footer a[data-hbx="poweredby_cta"],
656+
footer .underline.hover\\:opacity-100,
657+
footer a[target="_blank"][rel="noopener"] {
658+
display: none !important;
659+
}
660+
661+
/* Hide the entire footer if it contains Hugo Blox branding */
662+
footer:has(a[href*="hugoblox.com"]) {
663+
display: none !important;
664+
}
665+
666+
/* Alternative: Hide footer text containing "Made with" */
667+
footer:has-text("Made with") {
668+
display: none !important;
669+
}
670+
671+
/* Hide the entire page footer if it contains Hugo Blox branding */
672+
.page-footer {
673+
display: none !important;
674+
}
675+
676+
/* Alternative: Hide footer container */
677+
footer.container.mx-auto.flex.flex-col.justify-items-center {
678+
display: none !important;
590679
}

content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sections:
4545
[Read the full paper on arXiv →](https://arxiv.org/abs/2508.11401)</a>
4646
4747
<div class="news-button-container">
48-
<a href="/blog/" class="news-button">blog →</a>
48+
<a href="/blog/" class="news-button">read latest blog post →</a>
4949
</div>
5050
</div>
5151
design:

content/blog/_index.md

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,38 @@ design:
88

99
# Page sections
1010
sections:
11-
- block: collection
11+
- block: markdown
1212
content:
13-
title: blog
14-
subtitle:
15-
text: ''
16-
page_type: blog
17-
count: 10
18-
filters:
19-
author: ''
20-
category: ''
21-
tag: ''
22-
exclude_featured: false
23-
exclude_future: false
24-
exclude_past: false
25-
publication_type: ''
26-
offset: 0
27-
order: desc
13+
title: 'latest news'
14+
subtitle: ''
15+
text: |-
16+
<div class="news-light-blue">
17+
August 2025 - Preprint published on arXiv: <a href="https://arxiv.org/abs/2508.11401" target="_blank">"FACET: Teacher-Centred LLM-Based Multi-Agent Systems"</a>
18+
19+
<div class="news-button-container">
20+
<a href="/blog/" class="news-button">Latest News →</a>
21+
</div>
22+
</div>
2823
design:
29-
view: citation
30-
show_date: true
31-
show_read_time: false
32-
show_read_more: true
33-
show_image: false
34-
show_links: false
35-
show_summary: true
3624
columns: '1'
37-
css_class: 'text-left'
25+
css_class: 'text-center'
26+
27+
- block: markdown
28+
content:
29+
title: 'FACET: Teacher-Centred LLM-Based Multi-Agent Systems - Preprint Published'
30+
subtitle: 'August 2025'
31+
text: |-
32+
<div class="news-light-blue">
33+
Aug 2025 - Have a look at our recent preprint "FACET: Teacher-Centred LLM-Based Multi-Agent Systems—Towards Personalized Educational Worksheets" that has been published on arXiv.
34+
35+
The paper presents a teacher-centred LLM-based multi-agent system that supports teachers in developing personalized educational materials according to students characteristics.
36+
37+
<div class="news-button-container">
38+
<a href="https://arxiv.org/abs/2508.11401" class="news-button" target="_blank">Read Full Paper →</a>
39+
</div>
40+
</div>
41+
design:
42+
columns: '1'
43+
css_class: 'text-center'
3844

3945
---

0 commit comments

Comments
 (0)