diff --git a/CHANGELOG.md b/CHANGELOG.md
index c9f45cc6170e2ce6f5716e7cf9bcac38e9b6a4ac..4393bd000519c96fdd7fe37adbd1d345abace37f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,7 +7,17 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
-## [0.12.0] - 2024-11-15
+## [0.14.0] - 2024-11-15 (WIP)
+
+### Changed
+
+-   require Datamodel >= 0.7.0
+
+### New
+
+-   News can add Sections in the page
+
+## [0.12.0] - 2024-11-15 (1.3)
 
 ### Fix
 
diff --git a/package.json b/package.json
index c72d0f97bb3613063e5e46ae272c2275a48ba44c..d96ae540f7e46392f4e693884c4b675c4c79dbd6 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,7 @@
     "license": "MIT",
     "onegeosuite": {
         "portal": {
-            "datamodel": ">=0.6.1"
+            "datamodel": ">=0.7.0"
         }
     },
     "peerDependencies": {
diff --git a/src/templates/news.tsx b/src/templates/news.tsx
index dfdfdb26803cfbaa02484de826dedd9cf3f1d7a9..5e8ea45f993f8b72587772189010dfef3daea4dc 100644
--- a/src/templates/news.tsx
+++ b/src/templates/news.tsx
@@ -13,8 +13,13 @@ import {
     Content,
     Link,
     SideBar,
+    Sections,
 } from "@onegeo-suite/gatsby-theme-onegeo"
 
+interface ISection {
+    sections_id: string[] | []
+}
+
 interface Idata {
     directus: {
         news: {
@@ -47,6 +52,7 @@ interface Idata {
                 name: string
             }
             content: string
+            sections: ISection[] | []
             link: string
         }
     }
@@ -61,11 +67,22 @@ const News = ({ pageContext, data, location }: PageProps<Idata>) => {
     const urlImage = data.directus.news[0].image?.imageFile?.publicURL
     const categoryName = data.directus.news[0].categories?.name
 
-    const { content, title, author, links, documents, date_published } = news
+    const {
+        content,
+        title,
+        author,
+        links,
+        documents,
+        date_published,
+        sections,
+    } = news
 
+    const idsSections = sections.map((section: any) => section.sections_id.id)
     const dataPub = dayjs(date_published).format("DD/MM/YYYY")
 
-    let position = "right"
+    const options = news.options ?? {}
+    const sectionsPosition = options.sectionsPosition ?? "center"
+    const sidebarPosition = options.sidebarPosition ?? "right"
 
     return (
         <Layout>
@@ -94,23 +111,44 @@ const News = ({ pageContext, data, location }: PageProps<Idata>) => {
 
                 <div className="mb-8 mt-8 flex flex-wrap gap-6 lg:flex-nowrap">
                     {/* Todo Fix mobile mode */}
-                    {position === "left" ? (
+                    {sidebarPosition === "left" ? (
                         <SideBar documents={documents} links={links} />
                     ) : null}
 
-                    <div className="bg-base-100 w-full rounded-xl p-6 lg:shadow-lg">
-                        <div
-                            className="prose max-w-4xl"
-                            dangerouslySetInnerHTML={{
-                                __html: content,
-                            }}
-                        ></div>
+                    <div>
+                        {sectionsPosition === "top" &&
+                            Object.keys(idsSections).length !== 0 && (
+                                <div className="mt-8">
+                                    <Sections ids={idsSections} />
+                                </div>
+                            )}
+
+                        <div className="bg-base-100 w-full rounded-xl p-6 lg:shadow-lg">
+                            <div
+                                className="prose max-w-4xl"
+                                dangerouslySetInnerHTML={{
+                                    __html: content,
+                                }}
+                            ></div>
+                            {sectionsPosition === "center" &&
+                                Object.keys(idsSections).length !== 0 && (
+                                    <Sections ids={idsSections} />
+                                )}
+                        </div>
+
+                        {sectionsPosition === "bottom" &&
+                            Object.keys(idsSections).length !== 0 && (
+                                <div className="mt-8">
+                                    <Sections ids={idsSections} />
+                                </div>
+                            )}
                     </div>
 
-                    {position === "right" ? (
+                    {sidebarPosition === "right" ? (
                         <SideBar documents={documents} links={links} />
                     ) : null}
                 </div>
+
                 <div className="mb-24 flex justify-center">
                     <div className="flex w-5/6 space-x-4">
                         {pageContext.prev ? (
@@ -187,6 +225,13 @@ export const query = graphql`
                 categories {
                     name
                 }
+                sections(sort: "sort") {
+                    sections_id {
+                        id
+                    }
+                    sort
+                }
+                options
             }
         }
     }