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

Add attribute to distinguish community vs. product in the content #407

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Server and Operator guide sources are located at `https://github.com/keycloak/ke

git clone https://github.com/keycloak/keycloak
cd keycloak
mvn -pl docs clean install
mvn -pl docs/guides clean install

Then you can build the website with the `999.0.0-SNAPSHOT` version:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ public void init(Context context) {
globalAttributes = new HashMap<>();
globalAttributes.put("version", context.versions().getLatest().getVersion());
globalAttributes.put("majorMinorVersion", context.versions().getLatest().getVersionShorter());
globalAttributes.put("project_community", "true");
}

public void close() {
Expand Down