Category Archives: Energy Management
ENGIE and Safran today announce a 10-year renewable Power Purchase Agreement (PPA) for the UK, a significant step in their shared commitment to a more sustainable future.
The Innovathon 2024 embodies GEMS’ commitment to client-centric innovation, fostering bold solutions that address decarbonization challenges and drive the energy transition forward
We are thrilled to announce that ENGIE has been recognized with two prestigious awards at the Energy Risk Awards ceremony held in Houston.
ENGIE Global Energy Management & Sales (GEMS) has achieved new records in this year’s Energy Risk Commodity Rankings!
ENGIE rises to the top of the list of developers of Power Purchase Agreements (PPAs) for clean energy companies!
This renewable energy comes from the Moray West offshore wind farm in Scotland.
<?php
/*
Plugin Name: ENGIE Industry Page Widget
Description: Shortcode to render industry selector and personalised solutions.
Version: 1.0
Author: ENGIE Digital
*/
function engie_industry_page_shortcode($atts){
$atts = shortcode_atts([
'cdn' => plugins_url('engie-industry.js', __FILE__),
'templates' => content_url('uploads/engie/templates.json')
], $atts);
ob_start(); ?>
<div id="engie-industry-root" data-templates="<?php echo esc_attr($atts['templates']); ?>"></div>
<script src="<?php echo esc_url($atts['cdn']); ?>" defer></script>
<style>
#engie-industry-root{max-width:980px;margin:0 auto;font-family:Arial,Helvetica,sans-serif}
.engie-card{border:1px solid #e6e6e6;padding:16px;margin:12px 0;border-radius:6px}
.engie-cta{background:#0072c6;color:#fff;padding:10px 14px;border:none;border-radius:4px;cursor:pointer}
</style>
<?php
return ob_get_clean();
}
add_shortcode('engie_industry_page','engie_industry_page_shortcode');