Created
June 26, 2011 20:30
-
-
Save lazypower/1047943 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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