Skip to content

Instantly share code, notes, and snippets.

@kaustavdm
Created March 20, 2013 20:20
Show Gist options
  • Save kaustavdm/6795f0a197f415532b69 to your computer and use it in GitHub Desktop.
Save kaustavdm/6795f0a197f415532b69 to your computer and use it in GitHub Desktop.
Broken indentation for web-mode
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ $theme_data['title'] }}</title>
{{ $theme_data['metadata'] }}
{{ theme_partial('components/ie6') }}
<link rel="shortcut icon" href="{{ asset('themes/default/assets/img/favicon.ico') }}">
</head>
<body class="front-body {{ (rtrim(URL::current(), '/ ') === rtrim(URL::base(), '/ ')) ? 'front' : 'not-front' }}">
<div class="top-border clearfix"></div><!-- /.top-border -->
<div class="header-wrapper clearfix">
@if (rtrim(URL::current(), '/ ') === rtrim(URL::base(), '/'))
{{ theme_partial('sections/header_front') }}
@else
{{ theme_partial('sections/header_not_front') }}
@endif
</div><!-- /.header-wrapper -->
<div class="content-wrapper-outer clearfix">
<div class="container">
<div class="content-wrapper row">
<section>
<div class="content span9">
<div class="row">
<div class="span6">
<h3 class="margin-top-large">Welcome to the Department of Philosophy!</h3>
<p>
The Department of Philosophy, Jadavpur University. was established in 1964 with Professor Gopinath Bhattacharya as the Head of the Department. Under the able guidance of Professor Bhattacharya, the best scholars of the country were recruited at of the department. As a result, from the very beginning this department flourished as one of the best centres for studying philosophy in the country.
</p>
<a href="{{ url('about') }}" class="btn">More</a>
</div>
<div class="span3">
<img src="{{ asset('themes/default/assets/img/about_img.png') }}"
alt="Department of History, Jadavpur University"
class="margin-top-xxlarge">
</div>
</div>
</div><!-- /.content -->
</section>
<aside>
<div class="sidebar span3 divider-left">
{{ theme_partial('sections/sidebar') }}
</div><!-- /.sidebar -->
</aside>
</div><!-- /.content-wrapper -->
</div><!-- /.container -->
</div><!-- /.content-wrapper-outer -->
<div class="content-bottom-wrapper clearfix">
<div class="container">
<div class="content-bottom row">
<div class="span4 margin-top">
<h3 class="text-left">Notice Board</h3>
<div class="noticeboard-content">
@if (count($noticeboard) === 0)
<p class="muted">No notices are active.</p>
@else
<ul class="unstyled margin-bottom-large">
@foreach ($noticeboard as $notice)
<li class="margin-bottom-large">
<span class="muted">{{ date('M d, Y') }}</span> -
<a href="{{ url('notice-board/' . $notice->slug) }}">
{{ $notice->name }}.
</a> {{ Str::words(trim(strip_tags($notice->body)), 10) }}&hellip;
</li>
@endforeach
</ul>
@endif
<a href="{{ url('category/notice-board') }}" class="btn">More</a>
</div><!-- .noticeboard-content -->
</div><!-- /.span4.margin-top -->
<div class="span4 divider-left margin-top">
<h3 class="text-left margin-left-large">Contact Info</h3>
<div class="padding-left-large padding-right-large">
<div class="margin-bottom-large">
<p><span>Department of History,</span><br>
<span>Jadavpur University,</span><br>
<span>PG Arts Building,</span><br>
<span>Kolkata - 700032,</span>
</p>
<p>Phone and Fax: 033-2414-6962 (Direct)</p>
</div>
<a href="{{ url('contact') }}" class="btn">More</a>
</div>
</div><!-- /.span4.divider-left.margin-top -->
<div class="span4 divider-left margin-top">
<h3 class="text-left margin-left-large">e-Journal</h3>
<div class="ejournal-front text-center">
<p>Jadavpur Journal of History is now available online</p>
<a href="{{ url('category/journal') }}" class="ejournal-front-link">Read the Journal here</a>
</div>
</div><!-- /.span4.divider-left.margin-top -->
</div><!-- /.content-bottom -->
</div><!-- /.container -->
</div><!-- /.content-bottom-wrapper -->
<footer>
<div class="footer container-fluid">
{{ theme_partial('sections/footer') }}
</div><!-- /.container -->
</footer>
{{ theme_partial('assets/scripts') }}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment