header fix
This commit is contained in:
parent
c9add794da
commit
30eb7df02f
|
@ -62,3 +62,14 @@
|
||||||
|
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header-with-image {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-with-image img {
|
||||||
|
margin-right: 10px;
|
||||||
|
max-width: 100px; /* Adjust as needed */
|
||||||
|
max-height: 100px; /* Adjust as needed */
|
||||||
|
}
|
|
@ -84,7 +84,7 @@ features:
|
||||||
link: "/grants"
|
link: "/grants"
|
||||||
|
|
||||||
features2:
|
features2:
|
||||||
- title: "Fediversity explained - for Individuals"
|
- title: "Individuals"
|
||||||
image: "/images/user.png"
|
image: "/images/user.png"
|
||||||
content: "2Always be in control with your own data on social networks, whether that's with Mastodon, PeerTube or Pixelfed: Fediversity makes it possible."
|
content: "2Always be in control with your own data on social networks, whether that's with Mastodon, PeerTube or Pixelfed: Fediversity makes it possible."
|
||||||
button:
|
button:
|
||||||
|
@ -92,7 +92,7 @@ features2:
|
||||||
label: "Learn more"
|
label: "Learn more"
|
||||||
link: "/individuals"
|
link: "/individuals"
|
||||||
|
|
||||||
- title: "Fediversity explained - for Developers"
|
- title: "Developers"
|
||||||
image: "/images/code.png"
|
image: "/images/code.png"
|
||||||
content: "2As a developer building the next generation of social platforms, you are looking to make it easier to facilitate your customers to use your product. Fediversity can help."
|
content: "2As a developer building the next generation of social platforms, you are looking to make it easier to facilitate your customers to use your product. Fediversity can help."
|
||||||
button:
|
button:
|
||||||
|
@ -100,7 +100,7 @@ features2:
|
||||||
label: "Learn more"
|
label: "Learn more"
|
||||||
link: "/developers"
|
link: "/developers"
|
||||||
|
|
||||||
- title: "Fediversity explained - for the EC"
|
- title: "European Commission"
|
||||||
image: "/images/globe.png"
|
image: "/images/globe.png"
|
||||||
content: "2The Fediversity Project operates on a grant gratiously provided by the HORIZON fund by the EC. Learn more about the accountability of the project."
|
content: "2The Fediversity Project operates on a grant gratiously provided by the HORIZON fund by the EC. Learn more about the accountability of the project."
|
||||||
button:
|
button:
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"base",
|
"base",
|
||||||
"body",
|
"body",
|
||||||
"button",
|
"button",
|
||||||
|
"center",
|
||||||
"div",
|
"div",
|
||||||
"footer",
|
"footer",
|
||||||
"form",
|
"form",
|
||||||
|
@ -34,7 +35,6 @@
|
||||||
"section",
|
"section",
|
||||||
"source",
|
"source",
|
||||||
"span",
|
"span",
|
||||||
"style",
|
|
||||||
"svg",
|
"svg",
|
||||||
"textarea",
|
"textarea",
|
||||||
"time",
|
"time",
|
||||||
|
@ -65,8 +65,6 @@
|
||||||
"btn-sm",
|
"btn-sm",
|
||||||
"capitalize",
|
"capitalize",
|
||||||
"col-12",
|
"col-12",
|
||||||
"col-md-3",
|
|
||||||
"col-md-4",
|
|
||||||
"column",
|
"column",
|
||||||
"container",
|
"container",
|
||||||
"content",
|
"content",
|
||||||
|
@ -102,6 +100,7 @@
|
||||||
"h2",
|
"h2",
|
||||||
"h3",
|
"h3",
|
||||||
"header",
|
"header",
|
||||||
|
"header-with-image",
|
||||||
"hidden",
|
"hidden",
|
||||||
"hover:text-primary",
|
"hover:text-primary",
|
||||||
"hr-list",
|
"hr-list",
|
||||||
|
|
|
@ -84,13 +84,18 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- features2test-->
|
<!-- features2test-->
|
||||||
|
<center><h2> Fediverse Explained</h2></center>
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="grid-container">
|
<div class="grid-container">
|
||||||
{{ range $i, $e := .Params.features2 }}
|
{{ range $i, $e := .Params.features2 }}
|
||||||
<div class="grid-item">
|
<div class="grid-item">
|
||||||
<h2 class="mb-4">{{ .title | markdownify }}</h2>
|
<div class="header-with-image">
|
||||||
|
<img src="{{ .image }}" alt="Image">
|
||||||
|
<h4 class="mb-4">{{ .title | markdownify }}</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p class="mb-8 text-lg">{{ .content | markdownify }}</p>
|
<p class="mb-8 text-lg">{{ .content | markdownify }}</p>
|
||||||
{{ with .button }} {{ if .enable }}
|
{{ with .button }} {{ if .enable }}
|
||||||
<a class="btn btn-primary mt-6" href="{{ .link | absURL }}">
|
<a class="btn btn-primary mt-6" href="{{ .link | absURL }}">
|
||||||
|
|
|
@ -3069,6 +3069,17 @@ input#nav-toggle:checked ~ #nav-menu {
|
||||||
.grid-item {
|
.grid-item {
|
||||||
padding: 20px; }
|
padding: 20px; }
|
||||||
|
|
||||||
|
.header-with-image {
|
||||||
|
display: flex;
|
||||||
|
align-items: center; }
|
||||||
|
|
||||||
|
.header-with-image img {
|
||||||
|
margin-right: 10px;
|
||||||
|
max-width: 100px;
|
||||||
|
/* Adjust as needed */
|
||||||
|
max-height: 100px;
|
||||||
|
/* Adjust as needed */ }
|
||||||
|
|
||||||
@media (min-width: 540px) {
|
@media (min-width: 540px) {
|
||||||
|
|
||||||
.sm\:col-10 {
|
.sm\:col-10 {
|
||||||
|
|
|
@ -2081,13 +2081,18 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<center><h2> Fediverse Explained</h2></center>
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="grid-container">
|
<div class="grid-container">
|
||||||
|
|
||||||
<div class="grid-item">
|
<div class="grid-item">
|
||||||
<h2 class="mb-4">Fediversity explained - for Individuals</h2>
|
<div class="header-with-image">
|
||||||
|
<img src="/images/user.png" alt="Image">
|
||||||
|
<h4 class="mb-4">Individuals</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p class="mb-8 text-lg">2Always be in control with your own data on social networks, whether that’s with Mastodon, PeerTube or Pixelfed: Fediversity makes it possible.</p>
|
<p class="mb-8 text-lg">2Always be in control with your own data on social networks, whether that’s with Mastodon, PeerTube or Pixelfed: Fediversity makes it possible.</p>
|
||||||
|
|
||||||
<a class="btn btn-primary mt-6" href="//localhost:1313/individuals">
|
<a class="btn btn-primary mt-6" href="//localhost:1313/individuals">
|
||||||
|
@ -2098,7 +2103,11 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid-item">
|
<div class="grid-item">
|
||||||
<h2 class="mb-4">Fediversity explained - for Developers</h2>
|
<div class="header-with-image">
|
||||||
|
<img src="/images/code.png" alt="Image">
|
||||||
|
<h4 class="mb-4">Developers</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p class="mb-8 text-lg">2As a developer building the next generation of social platforms, you are looking to make it easier to facilitate your customers to use your product. Fediversity can help.</p>
|
<p class="mb-8 text-lg">2As a developer building the next generation of social platforms, you are looking to make it easier to facilitate your customers to use your product. Fediversity can help.</p>
|
||||||
|
|
||||||
<a class="btn btn-primary mt-6" href="//localhost:1313/developers">
|
<a class="btn btn-primary mt-6" href="//localhost:1313/developers">
|
||||||
|
@ -2109,7 +2118,11 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid-item">
|
<div class="grid-item">
|
||||||
<h2 class="mb-4">Fediversity explained - for the EC</h2>
|
<div class="header-with-image">
|
||||||
|
<img src="/images/globe.png" alt="Image">
|
||||||
|
<h4 class="mb-4">European Commission</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p class="mb-8 text-lg">2The Fediversity Project operates on a grant gratiously provided by the HORIZON fund by the EC. Learn more about the accountability of the project.</p>
|
<p class="mb-8 text-lg">2The Fediversity Project operates on a grant gratiously provided by the HORIZON fund by the EC. Learn more about the accountability of the project.</p>
|
||||||
|
|
||||||
<a class="btn btn-primary mt-6" href="//localhost:1313/ec">
|
<a class="btn btn-primary mt-6" href="//localhost:1313/ec">
|
||||||
|
|
|
@ -3069,6 +3069,17 @@ input#nav-toggle:checked ~ #nav-menu {
|
||||||
.grid-item {
|
.grid-item {
|
||||||
padding: 20px; }
|
padding: 20px; }
|
||||||
|
|
||||||
|
.header-with-image {
|
||||||
|
display: flex;
|
||||||
|
align-items: center; }
|
||||||
|
|
||||||
|
.header-with-image img {
|
||||||
|
margin-right: 10px;
|
||||||
|
max-width: 100px;
|
||||||
|
/* Adjust as needed */
|
||||||
|
max-height: 100px;
|
||||||
|
/* Adjust as needed */ }
|
||||||
|
|
||||||
@media (min-width: 540px) {
|
@media (min-width: 540px) {
|
||||||
|
|
||||||
.sm\:col-10 {
|
.sm\:col-10 {
|
||||||
|
|
|
@ -1060,3 +1060,14 @@
|
||||||
|
|
||||||
.grid-item {
|
.grid-item {
|
||||||
padding: 20px; }
|
padding: 20px; }
|
||||||
|
|
||||||
|
.header-with-image {
|
||||||
|
display: flex;
|
||||||
|
align-items: center; }
|
||||||
|
|
||||||
|
.header-with-image img {
|
||||||
|
margin-right: 10px;
|
||||||
|
max-width: 100px;
|
||||||
|
/* Adjust as needed */
|
||||||
|
max-height: 100px;
|
||||||
|
/* Adjust as needed */ }
|
||||||
|
|
Reference in a new issue