Skip to content

Instantly share code, notes, and snippets.

@lazypower
Created June 26, 2011 20:30
Show Gist options
  • Save lazypower/1047943 to your computer and use it in GitHub Desktop.
Save lazypower/1047943 to your computer and use it in GitHub Desktop.
@using CCBlog.Classes
@model IEnumerable<CCBlog.Classes.LastFmWrapper.Track>
@{
ViewBag.Title = "About Me";
}
@* embed the json string for LFM *@
<script type="text/javascript">
var lfmData = @Html.Raw(ViewBag.Json)
</script>
<div id="text_header">
<div class="content">
<h1>About</h1>
</div>
</div>
<!-- End text header -->
<!-- Begin page content -->
<div id="page_content">
<div class="full_width">
<!-- lfm data -->
<div id="LFM-Mod-Container">
<ul class="thumb">
</ul>
<div id="lfm-feature">
</div>
</div> <!-- /LFM-Mod-Container -->
<!-- /lfm data -->
</div>
</div>
<script type="text/javascript" src="/scripts/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="/scripts/LFM/lfm-1.0.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment