* Update ui-text.yml with Romanian translation
Added the translations for Romanian
* Update ui-text.yml
Corrected „less_than” with a proper translation for the context where it is being used
* Update docs
Added Romanian to the languages list
Deprecate hardcoded footer links in favor or new `footer.links` array for any link and in any order. All of Font Awesome's icons are available for use.
```
footer:
links:
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/username"
- label: "GitHub"
icon: "fab fa-fw fa-github"
url: "https://github.com/username"
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
url: "https://instagram.com/username"
```
Deprecate social networking links in `_config.yml` in favor or new `author.links` array for any link and in any order. All of Font Awesome's icons are available for use.
```
author:
links:
- label: "Your Website"
icon: "fas fa-fw fa-link"
url: "https://your-site.com"
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/username"
- label: "GitHub"
icon: "fab fa-fw fa-github"
url: "https://github.com/username"
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
url: "https://instagram.com/username"
```
Fixes#1581
Adjust minimum and maximum levels to allow all headings and fix CSS to style indentation and nested lists properly in jekyll-toc and Kramdown generated table of contents.
Fixes#1782
* Fixing scaling issue w. emoji in Sidebar Author Profile
Had the same issue as in mmistakes#1554
So should there be more demand for having emojis in sidebar, this style change fixes it
* Fix indendation and nesting
* Add `{{ content }}` to `home` layout
Allow the author to add content which will appear above the list of
recent posts. This also allows the `home` layout to be extended.
Add text to index.html in tests to indicate that the content appears in
the correct spot.
* Add paragraph markup
Since this is a HTML file, proper paragraph markup is needed.