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

Added more improvements about the I18n support #66

Draft
wants to merge 6 commits into
base: develop
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
11 changes: 6 additions & 5 deletions DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

### Or add @eeacms/volto-tabs-block to your Volto project

Before starting make sure your development environment is properly set. See [Volto Developer Documentation](https://docs.voltocms.com/getting-started/install/)
Before starting make sure your development environment is properly set. See [Volto Developer Documentation](https://6.docs.plone.org/volto/getting-started/install.html)

1. Make sure you have installed `yo`, `@plone/generator-volto` and `mrs-developer`

Expand All @@ -50,17 +50,18 @@ Before starting make sure your development environment is properly set. See [Vol

1. Install

$ yarn develop
$ yarn bootstrap
$ yarn

1. Start backend

$ docker pull plone
$ docker run -d --name plone -p 8080:8080 -e SITE=Plone -e PROFILES="profile-plone.restapi:blocks" plone
$ docker pull plone/plone-backend
$ docker run -d --name plone-backend -p 8080:8080 -e SITE="Plone" -e PROFILES="plone.restapi:blocks" plone/plone-backend:6.0


...wait for backend to setup and start - `Ready to handle requests`:

$ docker logs -f plone
$ docker logs -f plone-backend

...you can also check http://localhost:8080/Plone

Expand Down
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,36 @@
[![Duplicated Lines (%)](https://sonarqube.eea.europa.eu/api/project_badges/measure?project=volto-tabs-block-develop&metric=duplicated_lines_density)](https://sonarqube.eea.europa.eu/dashboard?id=volto-tabs-block-develop)


[Volto](https://github.com/plone/volto) add-on
[Volto](https://github.com/plone/volto) add-on for Tabs component, checkout the
[Tabs Component Storybook](https://eea.github.io/eea-storybook/?path=/story/components-tab--default)
for more details.


## Features

Demo GIF
### Volto Tabs Horizontal

A example of Volto Tabs Horizontal, it look like the following capture:

![Volto Tabs Horizontal](https://github.com/plone-ve/volto-tabs-block/assets/185395/c097d022-cc04-4551-a414-41fdce0329d9 "Volto Tabs Horizontal")

---

### Volto Tabs Vertical

A example of Volto Tabs Vertical, it look like the following capture:

![Volto Tabs Vertical](https://github.com/plone-ve/volto-tabs-block/assets/185395/07ad74c6-7101-4651-b690-e30673ebc0f6 "Volto Tabs Vertical")

---

### Volto Tabs Block Demo

A demonstration example of Volto Tabs Block, it's as the following capture:

![Volto Tabs Block Demo](https://github.com/plone-ve/volto-tabs-block/assets/185395/b8f6cb20-ee02-4bb6-8e91-29462fe2074a "Volto Tabs Block Demo")

---

## Getting started

Expand Down
Loading