symfony2admingenerator / symfony2admingenerator.github.com

Documentation for the AdmingeneratorGeneratorBundle
http://symfony2admingenerator.org/
24 stars 29 forks source link

New layout for symfony2admingenerator.com #30

Closed ioleo closed 12 years ago

ioleo commented 12 years ago

One of the major functions of the website is viewing documentation.

The current layout is avelage-looking, hard to read and it breaks down often becouse of bad CSS rules (for example, you need to preceed all {% highlight %} boxes with a paragraph, otherwise they break out of the page's flow and their width is minimum).

If others agree I could prepare a new design.

neoshadybeat commented 12 years ago

this question is for @cedriclombardot

cedriclombardot commented 12 years ago

@loostro Can you give me the url where the bug is

ioleo commented 12 years ago

@cedriclombardot In two places where I found the bug I already posted a fixes and they were merged.

But you can easily reproduce the error:

This is buggy:

## Some heading

{% highlight yaml %}
some:
  yaml:
    key: Example yaml content
{% endhighlight %}

Adding a paragraph fixes the bug:

## Some heading

This will be rendered as p paragraph and fixes the bug.

{% highlight yaml %}
some:
  yaml:
    key: Example yaml content
{% endhighlight %}
cedriclombardot commented 12 years ago

Ok thats fixed