I would like to have a quote page just to show quotes

I would use the class “category-post-format-quote” that is on the body tag to target and hide each element with CSS.

For example, you could hide the sidebar by the following CSS.

.category-post-format-quote .sidebar {
    display: none;
}

Use your browser’s inspector (F12) and find all the elements you want to hide.