initial commit

This commit is contained in:
Shuvam Khamrui
2025-06-11 21:00:46 +05:30
commit df0e0f9481
191 changed files with 18146 additions and 0 deletions

353
public/css/main.css Normal file
View File

@@ -0,0 +1,353 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--dark-black-1: hsl(215.56deg 31.03% 17.06%);
--dark-black-2: hsl(215.38deg 28.47% 26.86%);
--gray: hsl(217.24deg 21.17% 26.86%);
--gray-text: hsl(213.6deg 15.53% 68.43%);
--bg-color: hsl(0, 40%, 5%);
--text-color: hsl(0, 40%, 90%);
--story-submit-btn-bg-color: hsl(180, 30%, 50%);
}
html {
font-size: 62.5%;
}
body {
background-color: var(--text-color);
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
nav {
width: 100%;
padding: 2rem 4%;
display: flex;
align-items: center;
justify-content: space-between;
background-color: var(--story-submit-btn-bg-color);
}
/* .pagefind-ui__form {
padding: 0.5rem 0.8rem;
background-color: var(--dark-black-1);
flex: 1;
border: none;
outline: none;
font-size: 1.4rem;
&::before {
content: "\f002";
color: var(--gray-text);
position: absolute;
left: 0;
top: 0;
background-color: var(--dark-black-2);
}
}
.pagefind-ui__search-input {
background-color: var(--dark-black-2);
border: none;
outline: none;
font-size: 1.4rem;
padding: 1rem;
width: 100%;
&::placeholder {
color: var(--gray-text);
}
}
.pagefind-ui__search-clear {
display: none;
} */
/* dropdown */
.dropbtn {
background-color: var(--dark-black-2);
color: var(--text-color);
padding: 16px;
text-transform: uppercase;
font-size: 16px;
font-weight: 700;
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: var(--dark-black-2);
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
right: 0;
}
/* Links inside the dropdown */
.dropdown-content a {
color: var(--text-color);
padding: 12px 16px;
font-size: 1.6rem;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: hsl(from var(--dark-black-2) h s 30%);
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: var(--dark-black-1);
}
main {
width: 100%;
}
.hero {
width: 100%;
min-height: 40rem;
display: grid;
gap: 2rem;
padding: 2rem 4%;
grid-template-columns: repeat(4, 1fr);
}
h1 {
font-size: 4rem;
color: var(--bg-color);
}
p {
font-size: 2.5rem;
font-weight: 200;
color: var(--bg-color);
}
.hero > div:first-child {
grid-column: 1/3;
height: 100%;
display: flex;
gap: 2rem;
justify-content: center;
flex-direction: column;
}
.tags_categories {
grid-column: 3/5;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
}
.tags_list,
.category_list {
width: 100%;
padding: 2rem 4rem;
background-color: var(--dark-black-1);
h3 {
font-size: 2.5rem;
text-transform: uppercase;
margin-bottom: 1.5rem;
color: var(--gray-text);
}
ul {
list-style: none;
display: flex;
align-items: center;
row-gap: 2.5rem;
column-gap: 1rem;
flex-wrap: wrap;
}
}
.chip a {
font-size: 1.8rem;
color: var(--text-color);
text-decoration: none;
text-transform: capitalize;
background-color: var(--gray);
padding: 0.8rem;
border-radius: 0.4rem;
&:hover {
background-color: hsl(from var(--gray) h s 40%);
}
}
.story-btn {
width: 100%;
padding: 2rem;
font-size: 3.5rem;
cursor: pointer;
border: none;
outline: none;
background-color: var(--story-submit-btn-bg-color);
&:hover {
background-color: hsl(from var(--story-submit-btn-bg-color) h s 55%);
}
}
dialog {
margin: auto;
width: 100%;
#closeStoryModal {
padding: 0.5rem 2rem;
font-size: 1.5rem;
cursor: pointer;
color: var(--text-color);
border: none;
outline: none;
background-color: red;
}
}
iframe {
height: 90vh;
width: 100%;
}
.story__grid {
padding: 5rem 2rem;
display: grid;
gap: 3rem 4rem;
grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
}
.story__card {
--border-radius: 0.8rem;
display: flex;
flex-direction: column;
justify-content: start;
border-radius: var(--border-radius);
background-color: var(--gray);
.story__coverImg {
width: 100%;
object-fit: cover;
border-top-left-radius: var(--border-radius);
border-top-right-radius: var(--border-radius);
}
}
.story__card__details {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
gap: 1.2rem;
padding: 1.5rem 1.4rem;
}
.card__title {
color: var(--text-color);
font-size: 2.2rem;
}
.card__description {
color: var(--gray-text);
font-size: 1.2rem;
}
.story__card__icon {
height: 1.5rem;
width: auto;
}
.card__tags_categories {
display: flex;
gap: 0.6rem 1rem;
align-items: center;
flex-wrap: wrap;
a {
font-size: 1rem;
text-decoration: none;
}
}
.category__chip {
background-color: hsl(120, 100%, 30%);
padding: 0.2rem 0.6rem;
color: var(--text-color);
word-break: keep-all;
}
.tag__chip {
color: var(--gray-text);
word-break: keep-all;
}
.hastag {
font-size: 1.8rem;
margin-right: 0.2rem;
}
.publish__date__timeToRead {
display: flex;
align-items: center;
gap: 2rem;
}
.publish__date {
display: flex;
align-items: center;
gap: 0.5rem;
time {
color: var(--gray-text);
font-size: 1.2rem;
}
}
@media (width<=768px) {
.dropbtn {
font-size: 1.4rem;
padding: 1rem;
margin-left: 0.5rem;
}
.hero {
grid-template-columns: 1fr;
h1 {
font-size: 3.5rem;
}
p {
font-size: 1.8rem;
}
}
.hero > div:first-child {
grid-column: 1;
}
.hero > .tags_categories {
grid-column: 1;
}
.tags_list,
.category_list {
padding: 3rem 2rem;
}
.story__grid {
grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}
}

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>0-5 | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>0-5 on </title>
<link>https://example.org/de/categories/0-5/</link>
<description>Recent content in 0-5 on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/categories/0-5/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Farm | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Farm on </title>
<link>https://example.org/de/categories/farm/</link>
<description>Recent content in Farm on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/categories/farm/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Categories | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on </title>
<link>https://example.org/de/categories/</link>
<description>Recent content in Categories on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/categories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>0-5</title>
<link>https://example.org/de/categories/0-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/categories/0-5/</guid>
<description></description>
</item>
<item>
<title>Farm</title>
<link>https://example.org/de/categories/farm/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/categories/farm/</guid>
<description></description>
</item>
</channel>
</rss>

202
public/de/index.html Normal file
View File

@@ -0,0 +1,202 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="generator" content="Hugo 0.147.7">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

19
public/de/index.xml Normal file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title></title>
<link>https://example.org/de/</link>
<description>Recent content on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

221
public/de/sitemap.xml Normal file
View File

@@ -0,0 +1,221 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://example.org/de/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/"
/>
</url><url>
<loc>https://example.org/de/categories/0-5/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/0-5/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/0-5/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/0-5/"
/>
</url><url>
<loc>https://example.org/de/categories/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/"
/>
</url><url>
<loc>https://example.org/de/tags/cattle-farm/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/cattle-farm/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/cattle-farm/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/cattle-farm/"
/>
</url><url>
<loc>https://example.org/de/tags/digital-transformation/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/digital-transformation/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/digital-transformation/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/digital-transformation/"
/>
</url><url>
<loc>https://example.org/de/tags/erp/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/erp/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/erp/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/erp/"
/>
</url><url>
<loc>https://example.org/de/categories/farm/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/farm/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/farm/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/farm/"
/>
</url><url>
<loc>https://example.org/de/tags/odoo/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/odoo/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/odoo/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/odoo/"
/>
</url><url>
<loc>https://example.org/de/tags/paraguay/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/paraguay/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/paraguay/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/paraguay/"
/>
</url><url>
<loc>https://example.org/de/stories/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/stories/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/stories/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/stories/"
/>
</url><url>
<loc>https://example.org/de/tags/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/"
/>
</url><url>
<loc>https://example.org/de/stories/agape/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/stories/agape/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/stories/agape/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/stories/agape/"
/>
</url>
</urlset>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stories | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Stories on </title>
<link>https://example.org/de/stories/</link>
<description>Recent content in Stories on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/stories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cattle Farm | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Cattle Farm on </title>
<link>https://example.org/de/tags/cattle-farm/</link>
<description>Recent content in Cattle Farm on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/tags/cattle-farm/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Transformation | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Digital Transformation on </title>
<link>https://example.org/de/tags/digital-transformation/</link>
<description>Recent content in Digital Transformation on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/tags/digital-transformation/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ERP | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>ERP on </title>
<link>https://example.org/de/tags/erp/</link>
<description>Recent content in ERP on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/tags/erp/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

201
public/de/tags/index.html Normal file
View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tags | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

47
public/de/tags/index.xml Normal file
View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Tags on </title>
<link>https://example.org/de/tags/</link>
<description>Recent content in Tags on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Cattle Farm</title>
<link>https://example.org/de/tags/cattle-farm/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/tags/cattle-farm/</guid>
<description></description>
</item>
<item>
<title>Digital Transformation</title>
<link>https://example.org/de/tags/digital-transformation/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/tags/digital-transformation/</guid>
<description></description>
</item>
<item>
<title>ERP</title>
<link>https://example.org/de/tags/erp/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/tags/erp/</guid>
<description></description>
</item>
<item>
<title>Odoo</title>
<link>https://example.org/de/tags/odoo/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/tags/odoo/</guid>
<description></description>
</item>
<item>
<title>Paraguay</title>
<link>https://example.org/de/tags/paraguay/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/tags/paraguay/</guid>
<description></description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Odoo | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Odoo on </title>
<link>https://example.org/de/tags/odoo/</link>
<description>Recent content in Odoo on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/tags/odoo/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Paraguay | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">de</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Echte Odoo-Erfolgsgeschichten Sehen Sie, wo Odoo glänzt</h1>
<p class="">Entdecken Sie, wie Unternehmen branchenübergreifend mit Odoo ihre Transformation vorantreiben von der Bestandsoptimierung über die Vertriebsautomatisierung bis hin zur Skalierung von Abläufen. Dies sind Beispiele aus der Praxis, die zeigen, wie Odoo überzeugt. 💡 Nutzen Sie Odoo? Teilen Sie Ihre Erfolgsgeschichte und werden Sie vorgestellt mit einem Dofollow-Backlink zu Ihrer Website als Dankeschön. Das bedeutet kostenlose Präsenz und hervorragende SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
Kategorien
</h3>
<ul>
<li class="chip">
<a href="/de/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/de/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
Schlagworte
</h3>
<ul>
<li class="chip">
<a href="/de/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/de/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/de/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/de/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/de/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Senden Sie hier Ihre Erfolgsgeschichte</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/de/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10.06.2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 Minuten zum Lesen </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Paraguay on </title>
<link>https://example.org/de/tags/paraguay/</link>
<description>Recent content in Paraguay on </description>
<generator>Hugo</generator>
<language>de</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/de/tags/paraguay/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/de/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/de/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>0-5 | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>0-5 on </title>
<link>https://example.org/en/categories/0-5/</link>
<description>Recent content in 0-5 on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/categories/0-5/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Farm | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Farm on </title>
<link>https://example.org/en/categories/farm/</link>
<description>Recent content in Farm on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/categories/farm/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Categories | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on </title>
<link>https://example.org/en/categories/</link>
<description>Recent content in Categories on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/categories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>0-5</title>
<link>https://example.org/en/categories/0-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/categories/0-5/</guid>
<description></description>
</item>
<item>
<title>Farm</title>
<link>https://example.org/en/categories/farm/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/categories/farm/</guid>
<description></description>
</item>
</channel>
</rss>

730
public/en/index.html Normal file
View File

@@ -0,0 +1,730 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="generator" content="Hugo 0.147.7">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

75
public/en/index.xml Normal file
View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title></title>
<link>https://example.org/en/</link>
<description>Recent content on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

245
public/en/sitemap.xml Normal file
View File

@@ -0,0 +1,245 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://example.org/en/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/"
/>
</url><url>
<loc>https://example.org/en/categories/0-5/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/0-5/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/0-5/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/0-5/"
/>
</url><url>
<loc>https://example.org/en/categories/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/"
/>
</url><url>
<loc>https://example.org/en/tags/cattle-farm/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/cattle-farm/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/cattle-farm/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/cattle-farm/"
/>
</url><url>
<loc>https://example.org/en/tags/digital-transformation/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/digital-transformation/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/digital-transformation/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/digital-transformation/"
/>
</url><url>
<loc>https://example.org/en/tags/erp/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/erp/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/erp/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/erp/"
/>
</url><url>
<loc>https://example.org/en/categories/farm/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/farm/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/farm/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/farm/"
/>
</url><url>
<loc>https://example.org/en/tags/odoo/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/odoo/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/odoo/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/odoo/"
/>
</url><url>
<loc>https://example.org/en/tags/paraguay/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/paraguay/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/paraguay/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/paraguay/"
/>
</url><url>
<loc>https://example.org/en/stories/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/stories/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/stories/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/stories/"
/>
</url><url>
<loc>https://example.org/en/tags/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/"
/>
</url><url>
<loc>https://example.org/en/stories/agape-copy-10/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape-copy-2/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape-copy-5/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape-copy-6/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape-copy-7/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape-copy-8/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape-copy-9/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape-copy/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
</url><url>
<loc>https://example.org/en/stories/agape/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/stories/agape/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/stories/agape/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/stories/agape/"
/>
</url>
</urlset>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stories | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Stories on </title>
<link>https://example.org/en/stories/</link>
<description>Recent content in Stories on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/stories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cattle Farm | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Cattle Farm on </title>
<link>https://example.org/en/tags/cattle-farm/</link>
<description>Recent content in Cattle Farm on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/tags/cattle-farm/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Transformation | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Digital Transformation on </title>
<link>https://example.org/en/tags/digital-transformation/</link>
<description>Recent content in Digital Transformation on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/tags/digital-transformation/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ERP | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>ERP on </title>
<link>https://example.org/en/tags/erp/</link>
<description>Recent content in ERP on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/tags/erp/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

729
public/en/tags/index.html Normal file
View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tags | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

47
public/en/tags/index.xml Normal file
View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Tags on </title>
<link>https://example.org/en/tags/</link>
<description>Recent content in Tags on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Cattle Farm</title>
<link>https://example.org/en/tags/cattle-farm/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/tags/cattle-farm/</guid>
<description></description>
</item>
<item>
<title>Digital Transformation</title>
<link>https://example.org/en/tags/digital-transformation/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/tags/digital-transformation/</guid>
<description></description>
</item>
<item>
<title>ERP</title>
<link>https://example.org/en/tags/erp/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/tags/erp/</guid>
<description></description>
</item>
<item>
<title>Odoo</title>
<link>https://example.org/en/tags/odoo/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/tags/odoo/</guid>
<description></description>
</item>
<item>
<title>Paraguay</title>
<link>https://example.org/en/tags/paraguay/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/tags/paraguay/</guid>
<description></description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Odoo | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Odoo on </title>
<link>https://example.org/en/tags/odoo/</link>
<description>Recent content in Odoo on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/tags/odoo/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,729 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Paraguay | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">en</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Real Odoo Success Stories — See Where Odoo Shines</h1>
<p class="">Discover how companies across industries are transforming with Odoo — from streamlining inventory to automating sales and scaling operations. These are real-world examples of where Odoo kicks ass. 💡 Using Odoo? Share your success story and get featured — with a dofollow backlink to your website as a thank-you. Its free exposure and great SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categories
</h3>
<ul>
<li class="chip">
<a href="/en/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/en/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
tags
</h3>
<ul>
<li class="chip">
<a href="/en/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/en/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/en/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/en/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/en/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Submit your success story here</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-10/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-2/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-5/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-6/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-7/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-8/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy-9/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape-copy/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/en/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">Jun 10, 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutes to read </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Paraguay on </title>
<link>https://example.org/en/tags/paraguay/</link>
<description>Recent content in Paraguay on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/en/tags/paraguay/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-10/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-10/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-2/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-2/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://example.org/images/blog-thumbnail.png&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-5/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-6/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-6/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-7/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-7/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-8/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-8/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy-9/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy-9/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape-copy/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape-copy/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/en/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/en/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>0-5 | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>0-5 on </title>
<link>https://example.org/es/categories/0-5/</link>
<description>Recent content in 0-5 on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/categories/0-5/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Farm | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Farm on </title>
<link>https://example.org/es/categories/farm/</link>
<description>Recent content in Farm on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/categories/farm/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Categories | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on </title>
<link>https://example.org/es/categories/</link>
<description>Recent content in Categories on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/categories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>0-5</title>
<link>https://example.org/es/categories/0-5/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/categories/0-5/</guid>
<description></description>
</item>
<item>
<title>Farm</title>
<link>https://example.org/es/categories/farm/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/categories/farm/</guid>
<description></description>
</item>
</channel>
</rss>

202
public/es/index.html Normal file
View File

@@ -0,0 +1,202 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta name="generator" content="Hugo 0.147.7">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

19
public/es/index.xml Normal file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title></title>
<link>https://example.org/es/</link>
<description>Recent content on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

221
public/es/sitemap.xml Normal file
View File

@@ -0,0 +1,221 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://example.org/es/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/"
/>
</url><url>
<loc>https://example.org/es/categories/0-5/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/0-5/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/0-5/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/0-5/"
/>
</url><url>
<loc>https://example.org/es/categories/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/"
/>
</url><url>
<loc>https://example.org/es/tags/cattle-farm/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/cattle-farm/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/cattle-farm/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/cattle-farm/"
/>
</url><url>
<loc>https://example.org/es/tags/digital-transformation/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/digital-transformation/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/digital-transformation/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/digital-transformation/"
/>
</url><url>
<loc>https://example.org/es/tags/erp/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/erp/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/erp/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/erp/"
/>
</url><url>
<loc>https://example.org/es/categories/farm/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/categories/farm/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/categories/farm/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/categories/farm/"
/>
</url><url>
<loc>https://example.org/es/tags/odoo/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/odoo/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/odoo/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/odoo/"
/>
</url><url>
<loc>https://example.org/es/tags/paraguay/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/paraguay/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/paraguay/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/paraguay/"
/>
</url><url>
<loc>https://example.org/es/stories/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/stories/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/stories/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/stories/"
/>
</url><url>
<loc>https://example.org/es/tags/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/tags/"
/>
</url><url>
<loc>https://example.org/es/stories/agape/</loc>
<lastmod>2025-06-10T12:00:00+00:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://example.org/en/stories/agape/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://example.org/de/stories/agape/"
/>
<xhtml:link
rel="alternate"
hreflang="es"
href="https://example.org/es/stories/agape/"
/>
</url>
</urlset>

View File

@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transforming Our Cattle Farm with Odoo Community | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main> single page </main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stories | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Stories on </title>
<link>https://example.org/es/stories/</link>
<description>Recent content in Stories on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/stories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cattle Farm | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Cattle Farm on </title>
<link>https://example.org/es/tags/cattle-farm/</link>
<description>Recent content in Cattle Farm on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/tags/cattle-farm/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Transformation | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Digital Transformation on </title>
<link>https://example.org/es/tags/digital-transformation/</link>
<description>Recent content in Digital Transformation on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/tags/digital-transformation/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ERP | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>ERP on </title>
<link>https://example.org/es/tags/erp/</link>
<description>Recent content in ERP on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/tags/erp/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

201
public/es/tags/index.html Normal file
View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tags | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

47
public/es/tags/index.xml Normal file
View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Tags on </title>
<link>https://example.org/es/tags/</link>
<description>Recent content in Tags on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Cattle Farm</title>
<link>https://example.org/es/tags/cattle-farm/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/tags/cattle-farm/</guid>
<description></description>
</item>
<item>
<title>Digital Transformation</title>
<link>https://example.org/es/tags/digital-transformation/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/tags/digital-transformation/</guid>
<description></description>
</item>
<item>
<title>ERP</title>
<link>https://example.org/es/tags/erp/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/tags/erp/</guid>
<description></description>
</item>
<item>
<title>Odoo</title>
<link>https://example.org/es/tags/odoo/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/tags/odoo/</guid>
<description></description>
</item>
<item>
<title>Paraguay</title>
<link>https://example.org/es/tags/paraguay/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/tags/paraguay/</guid>
<description></description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Odoo | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Odoo on </title>
<link>https://example.org/es/tags/odoo/</link>
<description>Recent content in Odoo on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/tags/odoo/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,201 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Paraguay | </title>
<link rel="stylesheet" href="/css/main.css" />
<link href="/pagefind/pagefind-ui.css" rel="stylesheet" />
</head>
<body>
<nav>
<h2>sponser</h2>
<img src="" alt="" class="logo" />
<div class="search-bar-container" id="search"></div>
<div class="dropdown">
<button class="dropbtn">es</button>
<div class="dropdown-content">
<a href="/en/" class="">
English
</a>
<a href="/de/" class="">
German
</a>
<a href="/es/" class="">
Spanish
</a>
</div>
</div>
</nav>
<main>
<section class="hero">
<div class="">
<h1 class="">🚀 Historias de éxito reales de Odoo: descubre dónde destaca Odoo</h1>
<p class="">Descubre cómo empresas de todos los sectores se están transformando con Odoo, desde la optimización del inventario hasta la automatización de las ventas y la ampliación de las operaciones. Estos son ejemplos reales de cómo Odoo es un éxito rotundo. 💡 ¿Usas Odoo? Comparte tu historia de éxito y consigue visibilidad destacada con un backlink dofollow a tu sitio web como agradecimiento. Es visibilidad gratuita y un excelente SEO.</p>
</div>
<div class="tags_categories">
<div class="category_list">
<h3 class="">
<img src="/icons/categories.svg" alt="" class="">
categorías
</h3>
<ul>
<li class="chip">
<a href="/es/%20/categories/0-5/">0-5</a>
</li>
<li class="chip">
<a href="/es/%20/categories/farm/">farm</a>
</li>
</ul>
</div>
<div class="tags_list">
<h3 class="">
<img src="/icons/hastag.svg" alt="" class="">
etiquetas
</h3>
<ul>
<li class="chip">
<a href="/es/%20/tags/cattle-farm/">cattle farm</a>
</li>
<li class="chip">
<a href="/es/%20/tags/digital-transformation/">digital transformation</a>
</li>
<li class="chip">
<a href="/es/%20/tags/erp/">erp</a>
</li>
<li class="chip">
<a href="/es/%20/tags/odoo/">odoo</a>
</li>
<li class="chip">
<a href="/es/%20/tags/paraguay/">paraguay</a>
</li>
</ul>
</div>
</div>
</section>
<button class="story-btn" id="createStoryBtn">Envíe su historia de éxito aquí</button>
<dialog class="story_dialog">
<button id="closeStoryModal" autofocus>Close</button>
<iframe src="https://ai.odoo4projects.com/form/345c0f2c-8764-4094-8a5d-1be9c2ed86ef" frameborder="1"></iframe>
</dialog>
<section class="story__grid">
<article class="story__card">
<img src="/images/blog-thumbnail.png" alt="Transforming Our Cattle Farm with Odoo Community" class="story__coverImg" loading="lazy">
<div class="story__card__details">
<a href="https://example.org/es/stories/agape/" target="_self">
<h4 class="card__title">Transforming Our Cattle Farm with Odoo Community</h4>
</a>
<p class="card__description">
How Odoo Community helped streamline operations across three farm locations in Paraguay
</p>
<div class="card__tags_categories">
<a href="" class="category__chip">
Farm
</a>
<a href="" class="category__chip">
0-5
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Odoo
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>ERP
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Cattle Farm
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Paraguay
</a>
<a href="" class="tag__chip">
<span class="hastag">#</span>Digital Transformation
</a>
</div>
<div class="publish__date__timeToRead">
<div class="publish__date">
<img src="/icons/calender.svg" class="story__card__icon" alt="">
<time datetime="">10 jun. 2025</time>
</div>
<div class="publish__date">
<img src="/icons/hourglass.svg" class="story__card__icon" alt="">
<time datetime="">2 minutos para leer </time>
</div>
</div>
<div class="publish__date">
<img src="/icons/person.svg" class="story__card__icon" alt="">
<time datetime="">Estancia Agape</time>
</div>
</div>
</article>
</section>
</main>
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<script>
const dialog = document.querySelector("dialog");
const showButton = document.getElementById("createStoryBtn");
const closeButton = document.getElementById("closeStoryModal");
showButton.addEventListener("click", () => {
dialog.showModal();
});
closeButton.addEventListener("click", () => {
dialog.close();
});
</script>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Paraguay on </title>
<link>https://example.org/es/tags/paraguay/</link>
<description>Recent content in Paraguay on </description>
<generator>Hugo</generator>
<language>es</language>
<lastBuildDate>Tue, 10 Jun 2025 12:00:00 +0000</lastBuildDate>
<atom:link href="https://example.org/es/tags/paraguay/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Transforming Our Cattle Farm with Odoo Community</title>
<link>https://example.org/es/stories/agape/</link>
<pubDate>Tue, 10 Jun 2025 12:00:00 +0000</pubDate>
<guid>https://example.org/es/stories/agape/</guid>
<description>&lt;p&gt;&lt;img src=&#34;https://estancia-agape.com/web/image/1078-81bed64d/agapei-1.svg&#34; alt=&#34;Estancia Agapé&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Running a cattle farm in Paraguay presents unique challenges — especially when managing operations across &lt;strong&gt;three distinct locations&lt;/strong&gt;. At &lt;a href=&#34;https://estancia-agape.com&#34;&gt;Estancia Agapé&lt;/a&gt;, our goal has always been to stay grounded in tradition while embracing innovation to grow sustainably and efficiently. This is why we turned to &lt;strong&gt;Odoo Community&lt;/strong&gt;, and the results have exceeded our expectations.&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-odoo&#34;&gt;Why Odoo?&lt;/h2&gt;&#xA;&lt;p&gt;We evaluated various systems before choosing Odoo Community. The reasons were clear:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Open-source and customizable&lt;/li&gt;&#xA;&lt;li&gt;Robust set of features for inventory, accounting, and logistics&lt;/li&gt;&#xA;&lt;li&gt;Large and active global community&lt;/li&gt;&#xA;&lt;li&gt;No licensing fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;But what truly made the difference was the ability to &lt;strong&gt;host the service online&lt;/strong&gt;.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3"><path d="M360-300q-42 0-71-29t-29-71q0-42 29-71t71-29q42 0 71 29t29 71q0 42-29 71t-71 29ZM200-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v560q0 33-23.5 56.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0 0v-80 80Z"/></svg>

After

Width:  |  Height:  |  Size: 405 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3"><path d="m80-520 200-360 200 360H80Zm200 400q-66 0-113-47t-47-113q0-67 47-113.5T280-440q66 0 113 47t47 113q0 66-47 113t-113 47Zm0-80q33 0 56.5-23.5T360-280q0-33-23.5-56.5T280-360q-33 0-56.5 23.5T200-280q0 33 23.5 56.5T280-200Zm-64-400h128l-64-115-64 115Zm304 480v-320h320v320H520Zm80-80h160v-160H600v160Zm80-320q-57-48-95.5-81T523-659q-23-25-33-47t-10-47q0-45 31.5-76t78.5-31q27 0 50.5 12.5T680-813q16-22 39.5-34.5T770-860q47 0 78.5 31t31.5 76q0 25-10 47t-33 47q-23 25-61.5 58T680-520Zm0-105q72-60 96-85t24-41q0-13-7.5-21t-20.5-8q-10 0-19.5 5.5T729-755l-49 47-49-47q-14-14-23.5-19.5T588-780q-13 0-20.5 8t-7.5 21q0 16 24 41t96 85Zm0-78Zm-400 45Zm0 378Zm400 0Z"/></svg>

After

Width:  |  Height:  |  Size: 774 B

1
public/icons/hastag.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3"><path d="m240-160 40-160H120l20-80h160l40-160H180l20-80h160l40-160h80l-40 160h160l40-160h80l-40 160h160l-20 80H660l-40 160h160l-20 80H600l-40 160h-80l40-160H360l-40 160h-80Zm140-240h160l40-160H420l-40 160Z"/></svg>

After

Width:  |  Height:  |  Size: 321 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3"><path d="M320-160h320v-120q0-66-47-113t-113-47q-66 0-113 47t-47 113v120Zm160-360q66 0 113-47t47-113v-120H320v120q0 66 47 113t113 47ZM160-80v-80h80v-120q0-61 28.5-114.5T348-480q-51-32-79.5-85.5T240-680v-120h-80v-80h640v80h-80v120q0 61-28.5 114.5T612-480q51 32 79.5 85.5T720-280v120h80v80H160Z"/></svg>

After

Width:  |  Height:  |  Size: 407 B

1
public/icons/person.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3"><path d="M480-480q-66 0-113-47t-47-113q0-66 47-113t113-47q66 0 113 47t47 113q0 66-47 113t-113 47ZM160-160v-112q0-34 17.5-62.5T224-378q62-31 126-46.5T480-440q66 0 130 15.5T736-378q29 15 46.5 43.5T800-272v112H160Zm80-80h480v-32q0-11-5.5-20T700-306q-54-27-109-40.5T480-360q-56 0-111 13.5T260-306q-9 5-14.5 14t-5.5 20v32Zm240-320q33 0 56.5-23.5T560-640q0-33-23.5-56.5T480-720q-33 0-56.5 23.5T400-640q0 33 23.5 56.5T480-560Zm0-80Zm0 400Z"/></svg>

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

10
public/index.html Normal file
View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://example.org/en/</title>
<link rel="canonical" href="https://example.org/en/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://example.org/en/">
</head>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More