-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
179 additions
and
165 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Footer.ascx.cs" Inherits="btnet.Controls.Footer" %> | ||
<footer class="page-footer"> | ||
<div class="container"> | ||
<ul class="text-muted"> | ||
<li>BugTracker.NET</li> | ||
<li>·</li> | ||
<li><a target="_blank" href="http://ifdefined.com/README.html">Help</a></li> | ||
<li>·</li> | ||
<li><a target="_blank" href="mailto:[email protected]">Feedback</a></li> | ||
<li>·</li> | ||
<li><a target="_blank" href="about.html">About</a></li> | ||
<li>·</li> | ||
<li><a target="_blank" href="http://ifdefined.com/README.html">Donate</a></li> | ||
</ul> | ||
</div> | ||
<% Response.Write(Application["custom_footer"]); %> | ||
</footer> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
using System.Web.UI; | ||
using System.Web.UI.WebControls; | ||
|
||
namespace btnet.Controls | ||
{ | ||
public partial class Footer : System.Web.UI.UserControl | ||
{ | ||
protected void Page_Load(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="LoggedIn.master.cs" Inherits="btnet.LoggedIn" %> | ||
<%@ Register Src="~/Controls/Footer.ascx" TagPrefix="uc1" TagName="Footer" %> | ||
|
||
|
||
<!DOCTYPE html> | ||
|
||
|
@@ -24,25 +26,11 @@ | |
<div class="container" style="margin-top: 40px"> | ||
<asp:ContentPlaceHolder runat="server" ID="body"></asp:ContentPlaceHolder> | ||
</div> | ||
<footer class="page-footer"> | ||
<div class="container"> | ||
<ul class="text-muted"> | ||
<li>BugTracker.NET</li> | ||
<li>·</li> | ||
<li><a target="_blank" href="http://ifdefined.com/README.html">Help</a></li> | ||
<li>·</li> | ||
<li><a target="_blank" href="mailto:[email protected]">Feedback</a></li> | ||
<li>·</li> | ||
<li><a target="_blank" href="about.html">About</a></li> | ||
<li>·</li> | ||
<li><a target="_blank" href="http://ifdefined.com/README.html">Donate</a></li> | ||
</ul> | ||
</div> | ||
</footer> | ||
<uc1:Footer runat="server" id="Footer" /> | ||
<script src="Scripts/bootstrap.min.js"></script> | ||
</body> | ||
|
||
<asp:contentplaceholder runat="server" id="footerScripts"></asp:contentplaceholder> | ||
|
||
<% Response.Write(Application["custom_footer"]); %> | ||
|
||
</html> |
Oops, something went wrong.