BRE announces details for BREEAM Awards 2025
The Building Research Establishment (BRE) has today announced details for its 2025 BREEAM Awards – a celebration of the projects and organisations leading the way in sustainable building design, development and management.
The awards ceremony will be held on Thursday 5th June at The Peninsula Hotel in London, bringing together industry leaders and innovators from across the globe to celebrate the transformative power of buildings in shaping a sustainable future.
BREEAM has been the world-leading sustainability assessment method for planning projects, infrastructure and buildings for over 30 years. There are now 2.33 million BREEAM-registered buildings across 102 countries, with 610,000 having received certification to date.
Following the continued success of the awards, four new categories have been added to accommodate the growing number and variety of BREEAM certified projects around the world.
This year’s award categories are:
• Best New Construction, Residential Project
• Best New Construction, Commercial Project
• Best Refurbishment & Fit-Out Project
• Best BREEAM In-Use | Residential Building
• Best BREEAM In-Use | Commercial Building
• GRESB Portfolio Integration & Commitment | All Portfolios
• BREEAM Assessor Company Award
• BREEAM Lifecycle Award
• Peoples’ Choice Award | Commercial Building [NEW]
• Peoples’ Choice Award | Residential Building [NEW]
• BREEAM ESG Rising Star Award [NEW]
• BREEAM ESG Outstanding Achievement Award [NEW]
Industry practitioners are invited to submit nominations for projects that push the boundaries of sustainability and accelerate the transition to net zero. Nominees will be announced on 21st March.
Jane Goddard, Managing Director, Building Products and Services (BPS) and Deputy CEO of BRE said:
“The BREEAM Awards are an important opportunity to recognise and celebrate projects which are driving innovations in sustainability forward.
As the uptake of BREEAM grows, showcases like this help to inform best practice across our community and further understanding of new possibilities when pursuing our shared goals of a net zero built environment. "
Find out more about the BREEAM Awards 2025
Notes to Editors
For all press enquiries, please contact brepress@pagefield.co.uk
About BRE & BREEAM
BRE is a world leading, multi-disciplinary, building science centre with a mission to improve buildings and infrastructure, through cutting-edge research and knowledge generation. BRE maintains a range of products, services, standards and qualifications that are used around the world to bring about positive change in the built environment. Learn more
BREEAM is the world’s leading sustainability assessment methodology for master planning projects, infrastructure and buildings. It recognizes and reflects the value in higher performing assets across the built environment lifecycle, from new construction, through performance in operation, to refurbishment. BREEAM does this through third party certification of the assessment of an asset’s environmental, social and economic sustainability performance, using standards developed by BRE. This means BREEAM rated developments are more sustainable environments that enhance the well-being of the people who live and work in them, help protect natural resources and make for more attractive property investments. Learn more
Browse more from our latest news:
The following has evaluated to null or missing:
==> journalArticle.getArticleId [in template "20096#20121#319294" at line 26, column 68]
----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----
----
FTL stack trace ("~" means nesting-related):
- Failed at: @liferay_journal["journal-article"] a... [in template "20096#20121#319294" at line 26, column 21]
----
1<#assign ddmTemplateLocalService=serviceLocator.findService("com.liferay.dynamic.data.mapping.service.DDMTemplateLocalService") />
2<#assign classNameLocalService=serviceLocator.findService("com.liferay.portal.kernel.service.ClassNameLocalService") />
3
4<#assign classNameId=classNameLocalService.getClassNameId("com.liferay.dynamic.data.mapping.model.DDMStructure")/>
5<#assign templates=ddmTemplateLocalService.getTemplates(themeDisplay.getLayout().getGroupId(),classNameId) />
6<#assign rn=randomNamespace>
7
8<#list templates as temp>
9 <#assign templateTitle=temp.getName(themeDisplay.getLocale()) />
10
11 <#if templateTitle == "Article Card Stackable Test">
12 <#assign templateKey=temp.getTemplateKey() />
13 <#break>
14 </#if>
15</#list>
16
17<#assign entriescount=entries?size />
18
19<#if entriescount gt 2>
20 <div class="slick-carousel slick-carousel--three-card" id="${rn}_Carousel">
21 <#if entries?has_content>
22 <#list entries as curEntry>
23 <div>
24 <#assign assetRenderer=curEntry.getAssetRenderer()
25 journalArticle=assetRenderer.getAssetObject() />
26 <@liferay_journal["journal-article"] articleId=journalArticle.getArticleId()
27 ddmTemplateKey=templateKey groupId=journalArticle.getGroupId() />
28 </div>
29 </#list>
30 </#if>
31 </div>
32<#else>
33 <div class="slick-carousel slick-carousel--two-card">
34 <div class="row">
35 <#if entries?has_content>
36 <#list entries as curEntry>
37 <div class="col-lg-6">
38 <#assign assetRenderer=curEntry.getAssetRenderer()
39 journalArticle=assetRenderer.getAssetObject() />
40 <@liferay_journal["journal-article"] articleId=journalArticle.getArticleId()
41 ddmTemplateKey=templateKey groupId=journalArticle.getGroupId() />
42 </div>
43 </#list>
44 </#if>
45 </div>
46 </div>
47</#if>
48
49
50<script>
51 $(document).ready(function () {
52 $('#${rn}_Carousel').slick({
53 slidesToShow: 3,
54 slidesToScroll: 1,
55 dots: true,
56 arrows: true,
57 infinite: false,
58 accessibility: false,
59 responsive: [
60 {
61 breakpoint: 1199,
62 settings: {
63 slidesToShow: 3
64 }
65 },
66 {
67 breakpoint: 980,
68 settings: {
69 slidesToShow: 2
70 }
71 },
72 {
73 breakpoint: 600,
74 settings: {
75 arrows: false,
76 slidesToShow: 1
77 }
78 }
79 ]
80 });
81 });
82</script>