Layouts

Warp comes with a sophisticated layout system to create any kind of sidebar or widget layout. You can easily manage the sidebar's positions and widths in the theme administration. Widgets can have different styles and be placed in any position offered by this theme. Each position has its own layout. You can align widgets side-by-side, stack them or choose your own grid layout. Show or hide widgets on mobile devices, while the grid adapts perfectly to your layout.

Warp Layout System

Icons

YOOtheme is a well-known template and extension provider for Joomla and WordPress who helps you to create professional websites. But to make your website or interface design a real eye-catcher there was one thing missing: Icons! Icons are an essential tool to simplify user interfaces and today almost every major website uses icons to highlight important parts in their content.

Features

PNGs in 8 Sizes

From 16x16 to 512x512 pixels.

Scalable vector sources

Customizable PDF vector files.

Pixel perfect design

Handcrafted every size.

YOOtheme Icons. Beautiful and handcrafted icons for web and print projects. Visit Website

UIkit


Article title

Lorem ipsum dolor sit amet.

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

<div class="myclass">...</div>

text-muted
text-primary
text-success
text-warning
text-danger
a element
em element
strong
code element
del element
ins element
mark element
q inside a q element
abbr element
dfn element

Badge 1 Success 4 Warning 3 Danger 4

h1

h2

h3

h4

h5
h6

Lorem ipsum dolor.

Someone famous
  • Author

    May 2, 2090 at 1:55 pm

    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna.

Divider

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

Header

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

Box

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

Box primary

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

Box secondary

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

Info message

Success message

Warning message

Danger message

55%
55%
55%
55%
Form states
Form styles


  • List item 1
  • List item 2
  • List item 3
  • List item 1
  • List item 2
  • List item 3
Table caption
Table Heading
Table Data
Table Data
Description lists
Description text.
Description lists
Description text.

Title

Lorem ipsum dolor sit amet, consetetur sadipscing elitr.

Title

Lorem ipsum dolor sit amet, consetetur sadipscing elitr.

Dummy Content

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Features

This theme is built on the Warp framework, a well-engineered theme framework for WordPress and Joomla, and utilizes all of its latest features. The user interface is powered by UIkit, a lightweight and modular front-end framework, which provides the theme's styling. The theme also comes with a wide range of different layouts and widget variations.

Warp Framework

A fast and slick theme framework which is built on the latest web techniques like HTML5, CSS3 and PHP 5.3+

Visit Website

UIkit

A lightweight and modular front-end framework for developing fast and powerful web interfaces.

Visit Website

Styles

We provide lovingly crafted style variations to give you a glimpse of what is possible with this theme. The built-in theme customizer allows you to modify colors, fonts, sizes and much more without any CSS knowledge. Just choose your colors with the color picker and adjust the theme with only a few clicks. Click on one of the images to see the style.


Layout

We've added the option to choose between a classic wrapped and a modern wide screen layout.

Wrapper

Fullscreen


Full height slideshow

We created a custom style for our Widgetkit Slideshow perfectly fitting the theme. Plus you can set the height to fit the viewport.

Wrapper

Fullscreen


Charts

Katana comes with some cool charts you can easily customize. Just use the markup below. You can choose between 3 types by adding one of the following type attributes into the chart element, Pie, Doughnut, PolarArea. In addition you can add a width and height. For each item you can define specific options. Just add data-tm-chart to the item element. You can add as many as items as you want.

Option Description
label Defines a label on item hover.
value Defines the value of each item.
color The first elements are defined with the default theme colors by default. You can override them for each item.
highlight Defines the hover background color for each item.

Pie Chart

Doughnut Chart

Polar Area Chart

Markup

<chart type="Doughnut" width="500" height="500">
    <item data-tm-chart="{label: 'Primary', value: 200, color: '#f00'}"></item>
    <item data-tm-chart="{label: 'Secondary', value: 200, color: 'rgb(255,0,0)'}"></item>
    <item data-tm-chart="{label: 'Tertiary', value: 100, color: 'red'}"></item>
</chart>

Custom Overlay

You can add a cool hover effect to images by using the code example below.

Markup

<div class="uk-overlay tm-overlay">
    <img src="/" alt="">
        <a href="/"></a>
        <div class="uk-overlay-area">
            <div class="uk-overlay-area-content">
                <h1 class="uk-h3 tm-overlay-headline">...</h1>
                <p class="tm-overlay-content">...</p>
            </div>
        </div>
    </a>
</div>

Tile Grid

Katana comes with a fully customizable grid like you can see on the frontpage. You can build any kind of grid you want by using the Grid Component UIkit provides including the default UIkit responsive behavior.

Markup

To remove the grid gutter, add the .tm-grid-gutter-remove to the parent .uk-grid element. You can choose between 3 types of content within your tiles:

  1. Content

    You can insert any kind of content here starting with a div using the class .uk-position-cover. To get a colored tile you can add any kind of panel you want like in the example below.

  2. Image

    The image you put into your tile will automatically cover the area.

  3. Image with overlay

    The image with the overlay effect has the same behavior as the regular image. You can use the default UIkit overlay or add the class .tm-overlay like in the example below to get the Katana overlay.

NOTE To set the width and height of your tiles use data-tm-grid-tile="..." on the div containing the .uk-width-* classes directly before the content. The single tile size depends on the number of columns you create with the grid.

<div class="uk-grid tm-grid-gutter-remove">
  
    // 1. You can use every kind of panel here 
    <div class="uk-width-1-2" data-tm-grid-tile="2x1">
        <div class="uk-position-cover uk-panel uk-panel-box">
          ...
        </div>
    </div>
    
    // 2. Just an image without hover effect 
    <div class="uk-width-1-3" data-tm-grid-tile="1x1">
        <img src="/" alt="">
    </div>
    
    // 3. Image with an overlay effect
    <div class="uk-width-1-3" data-tm-grid-tile="1x1">
        <div class="uk-overlay tm-overlay">
            <img src="/" alt="">
            <a href="/">
                <div class="uk-overlay-area">
                    <div class="uk-overlay-area-content">
                        <h1 class="tm-overlay-headline">...</h1>
                        <p class="tm-overlay-content">...</p>
                    </div>
                </div>
            </a>
        </div>
    </div>

</div>  

Social Icons

Use the modifier .uk-icon-button class to create an icon button.

Here is a little code example how to add them:

<a href="#" class="uk-icon-button uk-icon-twitter"></a>
<a href="#" class="uk-icon-button uk-icon-facebook"></a>
<a href="#" class="uk-icon-button uk-icon-google-plus"></a>

Here is an overview of all icons provided by Font Awesome.

This theme is available for JoomlaJoomla and WordpressWordPress including the same features on each system.

Kinderhaus

collage.1

Im Kindergarten erleben sich viele Kinder zum ersten Mal als Mitglied einer größeren Gruppe, in der sie Verhaltensweisen im Miteinander erproben und festigen können. Der Erwerb von sozialen Kompetenzen ist deshalb ein wichtiger Bestandteil der täglichen Arbeit in unserem Haus.
Ein freundlicher Umgang miteinander, Toleranz und Hilfsbereitschaft, gegenseitige Akzeptanz sind Werte, die wir bei den Kindern fördern, die wir ihnen aber auch als Vorbild vorleben möchten. Diese Grundhaltungen sind wichtiger Bestandteil einer Erziehung im christlichen Sinne. 
Um in unserer Arbeit erfolgreich zu sein, liegt uns eine offene Zusammenarbeit mit den Eltern sehr am Herzen.

Unsere Ziele

Individuelle Entwicklung

Besonders wichtig ist uns, jedes Kind in seiner Entwicklung zu unterstützen. Da jedes Kind eine individuelle Persönlichkeit darstellt und einen eigenen Entwicklungsstand aufweist, fördern wir die Kinder gezielt und der Situation entsprechend.

Vermitteln von Lerninhalten

Durch differenzierte Angebote bieten wir den Kindern Anregungen in den verschiedensten Lernbereichen und erweitern die bis zum Kindergartenbeginn gemachten Erfahrungen. Bis zum Schuleinritt sollten alle Kinder z. B. mit Musik, Kunst, Sport, Zahlen und Mengen usw. in Berührung gekommen sein. Diese Angebote finden als Einzelangebote, Klein- oder Grossgruppenbeschäftigungen oder in Projektgruppen statt. Sie richten sich nach dem jeweiligen Interessens- und Entwicklungsstand der Kinder.

Bewegung, Umwelt- und Naturerfahrung

Unsere Einrichtung bietet den Kindern Raum für Bewegung, Umwelt- und Naturerfahrungen an, z. B.  im Waldprojekt, beim Turnen, der Bewegungsbaustelle im Turnraum oder beim Spiel im Freien. Ausgleich des kindlichen Bewegungsdrangs und positive Körpererfahrungen stärken das Selbstbewusstsein.

Religiöse Erziehung

Die religiöse Erziehung ist Bestandteil unseres Tagesablaufs, z.B. durch gemeinsames Beten, Singen, Geschichten erzählen. Dazu vermitteln wir den Kindern religiöse Bräuche und feiern mit ihnen religiöse Feste.

Sozialverhalten in der Gruppe

Auch das Einüben von sozialem Verhalten in einer Gruppe ist uns wichtig. Für die Kinder und ihre weitere Entwicklung ist von Bedeutung, dass sie lernen, sich in eine Gruppe einzufügen und sich als Teil einer Gemeinschaft zu erleben. Dabei lernen sie, Regeln einzuhalten, ihre Meinung vor anderen zu vertreten, aber auch unterschiedliche Persönlichkeiten zu respektieren.

Zusammenarbeit mit Eltern

Gute Zusammenarbeit mit den Eltern ist uns besonders wichtig. Deshalb binden wir die Eltern aktiv in das Kindergartengeschehen mit ein, holen uns Unterstützung und Hilfe bei ihnen ebenso wie Sie bei uns.

PDF Icon  Konzeption

 

 

Weitere Beiträge ...