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
|
|
@ -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