Bedeutung.org - das große Portal rund um alle Bedeutungen!
- Was bedeutet dieses komische Fremdwort noch einmal?
- Was bedeutet es, wenn im Chat immer "xoxo" steht?
- Was ist die Bedeutung meines Namens "Anna" eigentlich?
Diese oder ähnliche Fragen rund um die Bedeutung von Namen, Abkürzungen oder Smileys hast du dir doch bestimmt auch schon mal gestellt, oder? Aber wusstest du auch, dass deine Träume eine Bedeutung besitzen, oder viele Tiere für "etwas" stehen?
Bedeutung.org bietet dir kurz und knapp alle wichtigen Bedeutungen zu deiner Frage ... und darüber hinaus ;-). Stöber doch einfach mal? Du wirst überrascht sein!
- Abkürzung
- carpe diem (sprüche?)
- tiere
- tasten tastatur
- smiley
- (strassen)schilder
- chemie/physik
- fremdwort
- tarotkarten
- träume
- jugendsprache
- wappen
- wäschezeichen
- tattoo
- datum
- sternbild
- abzeichen
- Sprichwörter
TOP 5 Kategorien der Bedeutungen
Letztlich steckt hinter fast jeden Alltagsgegenstand eine Bedeutung, doch diese fünf Kategorien sind zur Zeit besonders gefragt!
- Was bedeuten diese Emojis?
- Was bedeutet der Name ...?
- Welche Smileys bedeuten was?
- Träume Bedeutungen
- Bedeutungen von Abkürzungen
Text File Markup
Text files are marked up using Markdown. They can also contain regular HTML.
At the top of text files you can place a block comment and specify certain meta attributes of the page. For example:
<!--
Title: Welcome
Description: This description will go in the meta description tag
Author: Joe Bloggs
Date: 2013/01/01
Robots: noindex,nofollow
-->
Aside from HTML <!-- … -->
style comments as shown above Phile also allows for /* … */
or YAML --- … ---
block comments.
Page Ordering
You can order pages by their attributes. For example for an custom ordering create an Order
meta attribute on each page, then use $config['pages_order'] = "meta.order:asc";
in your config.php
file.
Themes & Templates
You can create themes for your Phile installation in the "themes" folder. Check out the default theme for an example of a theme.
Create a new theme by duplicating the default theme folder and renaming it. Then activate it by setting $config['theme']
to that name.
All themes must include an index.html
file to define the HTML structure of the theme. Phile uses Twig for it's templating engine. Below are the Twig variables that are available to use in your theme:
{{ config }}
- Contains the values you set in config.php (e.g.{{ config.theme }}
= "default"){{ base_dir }}
- The path to your Phile root directory{{ base_url }}
- The URL to your Phile site{{ theme_dir }}
- The path to the Phile active theme directory{{ theme_url }}
- The URL to the Phile active theme directory{{ content_dir }}
- The path to the content direcotry{{ content_url }}
- The URL to the content directory{{ site_title }}
- Shortcut to the site title (defined in config.php){{ meta }}
- Contains the meta values from the current page{{ meta.title }}
{{ meta.description }}
{{ content }}
- The content of the current page (after it has been processed through Markdown){{ pages }}
- A collection of all the content in your site{{ page.title }}
{{ page.url }}
{{ page.content }}
{{ current_page }}
- A page object of the current_page
Page listing example:
<ul class="nav">
{% for page in pages %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
Further Customization and Plugins
For further information on customization and plugins check out the documentation on the Phile homepage.