Esempio n. 1
0
</head>

<body class="home" >

<!-- **Wrapper** -->
<div id="wrapper">

    <!-- **Header** -->
    <div id="header">
        <div class="container">

            <!-- **Logo** -->
            <div id="logo">
                <a href="/" title="">
                    <?php 
$logo = App\Content::whereType('logo')->orderBy('created_at', 'desc')->get()->first();
?>
                    @if(!empty($logo))
                         <img src="/uploads/logo/{{ $logo->logo }}" alt="" title="" />
                    @else
                        {!! HTML::image('images/logo_text-_white.png') !!}
                    @endif
                </a>
                <!--<a href="index.html"><h1 class="logo">Teleaus<span class="logo-h">></span></h1></a> -->
            </div><!-- **Logo - End** -->

            <div class="float-right">
                <!-- **Social icons** -->
                <div class="social-icons">
                    <a target="_blank" href="https://www.facebook.com/teleaus" title="" class="facebook"> </a>
                    <a target="_blank" href="https://twitter.com/teleaus" title="" class="twitter"> </a>
Esempio n. 2
0
                    @endif
                </div>
                @endforeach

            </div><!-- Layer Slider -->
        </div><!-- Layer Slider Container -->

    </div><!-- **Home Slider BG - End** -->
</div><!-- **Home Slider - End** -->

<!-- **Welcome Text** -->
<div class="welcome-text">
    <div class="container">
        <div class="text">
            <?php 
$text = App\Content::whereType('text')->orderBy('created_at', 'desc')->get()->first();
?>
            @if(!empty($text->title))
                <h1> {{ $text->title }}  </h1>
            @else
                <h1>DEVELOP OR PLAN WITH TELEAUS SOLUTIONS</h1>
            @endif
            @if(!empty($text->subtitle))
               <h4> {{ $text->subtitle }} </h4>
            @else
               <h4> Our people empowered by innovation </h4>
            @endif
        </div>
        <a href="/enquery" title="" class="button medium grey"> Contact Us </a>
    </div>
</div><!-- **Welcome Text End** -->