Selected updates from latest beautiful-jekyll changes
Update main.css, nexted menus: ensure title width is wide enough to accommodate children, Integrating public custom linkedin URL, add instagram, snapchat, youtube, and spotify links, updated awesome-font to v4.6, and updated CSS
This commit is contained in:
parent
46de23e692
commit
b418d4c303
9 changed files with 213 additions and 20 deletions
|
|
@ -19,10 +19,12 @@ pygmentCodeFences = true
|
|||
facebook = "username"
|
||||
github = "username"
|
||||
twitter = "username"
|
||||
linkedin = "pub/username/X/YYY/ZZZ"
|
||||
linkedin = "username"
|
||||
stackoverflow = "users/XXXXXXX/username"
|
||||
soundcloud = "username"
|
||||
wikipedia = "User:username"
|
||||
instagram = "username"
|
||||
youtube = "user/username" # or channel/channelname
|
||||
spotify = "username"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Blog"
|
||||
|
|
|
|||
|
|
@ -22,16 +22,18 @@ Here's a useless table:
|
|||
|
||||
How about a yummy crepe?
|
||||
|
||||

|
||||

|
||||
|
||||
Here's a code chunk:
|
||||
|
||||
~~~
|
||||
x <- 5 + 10
|
||||
print(x)
|
||||
var foo = function(x) {
|
||||
return(x + 5);
|
||||
}
|
||||
foo(3)
|
||||
~~~
|
||||
|
||||
And here is some code with syntax highlighting
|
||||
And here is the same code with syntax highlighting:
|
||||
|
||||
```javascript
|
||||
var foo = function(x) {
|
||||
|
|
@ -39,3 +41,12 @@ var foo = function(x) {
|
|||
}
|
||||
foo(3)
|
||||
```
|
||||
|
||||
And here is the same code yet again but with line numbers:
|
||||
|
||||
{{< highlight python linenos >}}
|
||||
var foo = function(x) {
|
||||
return(x + 5);
|
||||
}
|
||||
foo(3)
|
||||
{{</ highlight >}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue