24 lines
845 B
HTML
24 lines
845 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<vt:include file="../inc/meta.inc" />
|
|
<link href="Styles/Startpage.css?ver={$version}" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="titBar">
|
|
<div class="title">我的课程</div>
|
|
</div>
|
|
<div class="listBox">
|
|
<vt:foreach id="courses" from="$#.courses" item="data" index="i" size="2" remark="课程">
|
|
<div class="item" couid="{$:#.data.Cou_ID}"> <a href="/course.ashx?id={$:#.data.Cou_ID}" target="_blank">
|
|
<img src="{$path}{$:#.data.Cou_LogoSmall}" alt="{$:#.data.Cou_Name}" subject="{$:#.data.sbj_Name}" default="../images/cou_nophoto.jpg" /></a>
|
|
<div class="itemName"><a href="/course.ashx?id={$:#.data.Cou_ID}" target="_blank"> {$:#.data.Cou_Name}</a> </div>
|
|
</div>
|
|
</vt:foreach>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|