1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Changed images to be in the image folder, and css to be in Content.

This commit is contained in:
Uncled1023 2016-09-30 12:55:55 -07:00
parent 23b6e61efc
commit 667ef65682
9 changed files with 11 additions and 178 deletions

View File

@ -14,6 +14,7 @@
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
@ -26,7 +27,6 @@
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>

View File

@ -66,7 +66,7 @@ namespace Teknik.Areas.Blog
"~/Areas/Blog/Scripts/Blog.js"));
// Register Style Bundles
BundleTable.Bundles.Add(new StyleBundle("~/Content/blog").Include(
"~/Scripts/mdd_styles.css",
"~/Content/mdd_styles.css",
"~/Areas/Blog/Content/Blog.css"));
}
}

View File

@ -10,7 +10,7 @@ div.mdd_modal
z-index:1000;
display:none;
font-size:10pt;
background-image:url(mdd_modal_background.png);
background-image:url(../images/mdd_modal_background.png);
}
div.mdd_modal_frame
{
@ -68,7 +68,7 @@ div.mdd_modal_content
div.mdd_ajax_loader
{
background-position: center center;
background-image: url(mdd_ajax_loader.gif);
background-image: url(../images/mdd_ajax_loader.gif);
background-repeat: no-repeat;
width:100%;
height:200px;
@ -122,7 +122,7 @@ div.mdd_toolbar li
div.mdd_toolbar a.mdd_button
{
background-image:url(mdd_toolbar.png);
background-image:url(../images/mdd_toolbar.png);
width:20px;
height:20px;
display:block;
@ -198,7 +198,7 @@ div.mdd_resizer_wrap
div.mdd_resizer
{
background:#f8f8f8;
background-image:url("mdd_gripper.png");
background-image:url("../images/mdd_gripper.png");
background-position:center center;
background-repeat:no-repeat;
padding-left:2px;

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 150 B

After

Width:  |  Height:  |  Size: 150 B

View File

Before

Width:  |  Height:  |  Size: 173 B

After

Width:  |  Height:  |  Size: 173 B

View File

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -1,166 +0,0 @@
<h2>Markdown Formatting</h2>
<p><a href="http://daringfireball.net/projects/markdown/" target="_blank">Markdown</a> turns plain text formatting into fancy HTML formatting.</p>
<h3>Phrase Emphasis</h3>
<pre><code>*italic* **bold**
_italic_ __bold__
</code></pre>
<h3>Links</h3>
<p>Inline:</p>
<pre><code>An [example](http://url.com/ &quot;Title&quot;)
</code></pre>
<p>Reference-style labels (titles are optional):</p>
<pre><code>An [example][id]. Then, anywhere
else in the doc, define the link:
[id]: http://example.com/ &quot;Title&quot;
</code></pre>
<h3>Images</h3>
<p>Inline (titles are optional):</p>
<pre><code>![alt text](/path/img.jpg &quot;Title&quot;)
</code></pre>
<p>Reference-style:</p>
<pre><code>![alt text][id]
[id]: /url/to/img.jpg &quot;Title&quot;
</code></pre>
<h3>Headers</h3>
<p>Setext-style:</p>
<pre><code>Header 1
========
Header 2
--------
</code></pre>
<p>atx-style (closing #'s are optional):</p>
<pre><code># Header 1 #
## Header 2 ##
###### Header 6
</code></pre>
<h3>Lists</h3>
<p>Ordered, without paragraphs:</p>
<pre><code>1. Foo
2. Bar
</code></pre>
<p>Unordered, with paragraphs:</p>
<pre><code>* A list item.
With multiple paragraphs.
* Bar
</code></pre>
<p>You can nest them:</p>
<pre><code>* Abacus
* answer
* Bubbles
1. bunk
2. bupkis
* BELITTLER
3. burper
* Cunning
</code></pre>
<h3>Blockquotes</h3>
<pre><code>&gt; Email-style angle brackets
&gt; are used for blockquotes.
&gt; &gt; And, they can be nested.
&gt; #### Headers in blockquotes
&gt;
&gt; * You can quote a list.
&gt; * Etc.
</code></pre>
<h3>Code Spans</h3>
<pre><code>`&lt;code&gt;` spans are delimited
by backticks.
You can include literal backticks
like `` `this` ``.
</code></pre>
<h3>Preformatted Code Blocks</h3>
<p>Indent every line of a code block by at least 4 spaces or 1 tab.</p>
<pre><code>This is a normal paragraph.
This is a preformatted
code block.
</code></pre>
<h3>Horizontal Rules</h3>
<p>Three or more dashes or asterisks:</p>
<pre><code>---
* * *
- - - -
</code></pre>
<h3>Manual Line Breaks</h3>
<p>End a line with two or more spaces:</p>
<pre><code>Roses are red,
Violets are blue.
</code></pre>
<h2>Extra Mode</h2>
These formatting features are only available when Extra Mode is enabled.
<h3>Markdown In Html</h3>
<p>Enable markdown in HTML block level elements:</p>
<pre><code>&lt;div markdown=&quot;1&quot;&gt;
Markdown **still** works.
&lt;/div&gt;
</code></pre>
<h3>Fenced Code Blocks</h3>
<p>Code blocks delimited by 3 or more tildas:</p>
<pre><code>~~~
This is a preformatted
code block
~~~
</code></pre>
<h3>Header IDs</h3>
<p>Set the id of headings with <code>{#&lt;id&gt;}</code> at end of heading line:</p>
<pre><code>## My Heading {#myheading}
</code></pre>
<h3>Tables</h3>
<pre><code>Fruit |Color
---------|----------
Apples |Red
Pears |Green
Bananas |Yellow</code></pre>
<h3>Definition Lists</h3>
<pre><code>Term 1
: Definition 1
Term 2
: Definition 2</code></pre>
<h3>Footnotes</h3>
<pre><code>Body text with a footnote [^1]
[^1]: Footnote text here
</code></pre>
<h3>Abbreviations</h3>
<pre><code>MDD &lt;- will have title
*[MDD]: MarkdownDeep
</code></pre>
<p>&nbsp;</p>

View File

@ -594,12 +594,11 @@
<Content Include="Scripts\MarkdownDeep License.txt" />
<Content Include="Scripts\MarkdownDeep Quick Reference.txt" />
<Content Include="Scripts\MarkdownDeepLib.min.js" />
<Content Include="Scripts\mdd_ajax_loader.gif" />
<Content Include="Scripts\mdd_gripper.png" />
<Content Include="Scripts\mdd_help.htm" />
<Content Include="Scripts\mdd_modal_background.png" />
<Content Include="Scripts\mdd_styles.css" />
<Content Include="Scripts\mdd_toolbar.png" />
<Content Include="Images\mdd_ajax_loader.gif" />
<Content Include="Images\mdd_gripper.png" />
<Content Include="Images\mdd_modal_background.png" />
<Content Include="Content\mdd_styles.css" />
<Content Include="Images\mdd_toolbar.png" />
<Content Include="Scripts\modernizr-2.8.3.js" />
<Content Include="Scripts\ocupload\1.1.2\ocupload.js" />
<Content Include="Scripts\PageDown\Markdown.Converter.js" />