You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Some short description of your blog can go here."# This will show up in places like twitter, linkedin, etc, if you share your sites url as a post.
4
+
5
+
# Email / Social media user names used by the minima theme:
6
+
# All of these are optional and can be removed or commented out
<spanstyle="color: silver;">Share on: </span><divid="share-buttons">
26
+
<divclass="facebook" title="Share this on Facebook" onclick="window.open('http://www.facebook.com/share.php?u={{ safeurl }}','popup','width=600,height=600'); return false;">
<divclass="linkedin" title="Share this on Linkedin" onclick="window.open('https://www.linkedin.com/sharing/share-offsite/?url={{ safeurl }}','popup','width=600,height=600'); return false;">
<divclass="gplus" title="Share this on Google Plus" onclick="window.open('https://plus.google.com/share?url={{ safeurl }}','popup','width=600,height=600'); return false;">
Due to a plugin called `jekyll-titles-from-headings` which is supported by GitHub Pages by default. The above header (in the markdown file) will be automatically used as the pages title.
4
+
5
+
If the file does not start with a header, then the post title will be derived from the filename.
6
+
7
+
This is a sample blog post. You can talk about all sorts of fun things here.
8
+
9
+
---
10
+
11
+
### This is a header
12
+
13
+
#### Some T-SQL Code
14
+
15
+
```tsql
16
+
SELECT This, [Is], A, Code, Block -- Using SSMS style syntax highlighting
17
+
, REVERSE('abc')
18
+
FROM dbo.SomeTable s
19
+
CROSS JOIN dbo.OtherTable o;
20
+
```
21
+
22
+
#### Some PowerShell Code
23
+
24
+
```powershell
25
+
Write-Host "This is a powershell Code block";
26
+
27
+
# There are many other languages you can use, but the style has to be loaded first
28
+
29
+
ForEach ($thing in $things) {
30
+
Write-Output "It highlights it using the GitHub style"
0 commit comments