Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pagination not appearing #2069

Draft
wants to merge 2 commits into
base: src
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions layouts/shortcodes/home/members.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
<h2 class="big-text-secondary">{{ i18n "home-members" }}</h2>
<p>{{ i18n "home-members-title" }}</p>
<ul class="list-inline eclipsefdn-members-list members-by-level flex-center gap-50" data-ml-wg="jakarta-ee"
data-ml-template="logo-with-levels" data-ml-wg-level="WGSD" data-ml-level-under-logo="true">
data-ml-template="only-logos" data-ml-level="WGSD" data-ml-level-under-logo="true">
</ul>
</div>
</div>
<p class="margin-top-20"><a class="btn btn-primary" href="/membership/members/">{{ i18n "home-members-explore" }}</a></p>
</div>
</div>
</div>
36 changes: 34 additions & 2 deletions layouts/shortcodes/pages/membership/explore-members.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,34 @@
<div class="eclipsefdn-members-list jakarta-members margin-bottom-50" data-ml-wg="jakarta-ee"
data-ml-template="logo-title-with-levels"></div>
<div class="jakarta-members">
<h2 class="text-center" id="strategic">Strategic Members</h2>
<div
class="flex-center gap-40 eclipsefdn-members-list jakarta-members margin-bottom-50"
data-ml-wg="jakarta-ee"
data-ml-template="only-logos"
data-ml-level="WGSD"
>
</div>
<h2 class="text-center" id="enterprise">Enterprise Members</h2>
<div
class="eclipsefdn-members-list jakarta-members flex-center gap-40 margin-bottom-50"
data-ml-wg="jakarta-ee"
data-ml-template="only-logos"
data-ml-level="WGDSA"
>
</div>
<h2 class="text-center" id="participant">Participant Members</h2>
<div
class="eclipsefdn-members-list jakarta-members flex-center gap-40 margin-bottom-50"
data-ml-wg="jakarta-ee"
data-ml-template="only-logos"
data-ml-level="WGAPS"
>
</div>
<h2 class="text-center" id="participant">Guest Members</h2>
<div
class="eclipsefdn-members-list jakarta-members flex-center gap-40 margin-bottom-50"
data-ml-wg="jakarta-ee"
data-ml-template="only-logos"
data-ml-level="WGSAP"
>
</div>
</div>
25 changes: 25 additions & 0 deletions less/components/_commons.less
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,33 @@ footer#solstice-footer {
}
}
}
.jakarta-members {
h2,
.h2 {
position: relative;
margin-bottom: 20px;
overflow: hidden;

&::before {
right: 65%;
}
&::after {
left: 65%;
}

&::before,
&::after {
content: '';
position: absolute;
top: 16px;
width: 100%;
height: 1px;
background-color: #bdbdbd;
}
}
}
.jakarta-members ul.list-inline {

a {
max-width: none;
.img-responsive {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"optimize_news_images": "bash ./optimize_images.sh content/news"
},
"dependencies": {
"eclipsefdn-hugo-solstice-theme": "0.0.212",
"eclipsefdn-hugo-solstice-theme": "0.1.4",
"list.js": "^1.2.0",
"lodash-es": "^4.17.21"
},
Expand Down
Loading