mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-08-03 00:20:29 -05:00
41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs" Inherits="PkmnFoundations.GTS.MasterPage" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<title></title>
|
|
<asp:ContentPlaceHolder ID="cpHead" runat="server" />
|
|
<link rel="stylesheet" href="~/css/main.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="gtsHeader">
|
|
<div class="setWidth">
|
|
<h1>
|
|
<asp:HyperLink ID="hlHome" NavigateUrl="~/" runat="server">Foundations GTS</asp:HyperLink>
|
|
</h1>
|
|
<p>Fan-operated GTS for Pokémon Generations IV and V, by mm201</p>
|
|
<div class="right">
|
|
<div class="dns">
|
|
<div class="dnsHeading">DNS server:</div>
|
|
<div class="dnsIp">191.236.98.208</div>
|
|
</div>
|
|
<div class="stats">
|
|
<asp:Literal ID="litPokemon" runat="server" />
|
|
Pokémon available for offer.<br />
|
|
<asp:HyperLink ID="hlAllPokemon" NavigateUrl="~/AllPokemon.aspx" runat="server">Details</asp:HyperLink>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="github-contain">
|
|
<a class="github" href="https://github.com/mm201/pkmnFoundations" target="_blank">Fork me on GitHub!</a>
|
|
</div>
|
|
</div>
|
|
<div id="gtsMain">
|
|
<div class="setWidth">
|
|
<asp:ContentPlaceHolder ID="cpMain" runat="server" />
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|