Skip to content

Commit 1950158

Browse files
author
zzzprojects
committed
Update layout
Update layout
1 parent 8f7839f commit 1950158

File tree

8 files changed

+24
-11
lines changed

8 files changed

+24
-11
lines changed

docs/_data/meta.csv

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,10 @@ temporary-table-use-table-lock,temporary-table-use-table-lock,temporary-table-us
7676
use-audit,use-audit,use-audit,,use-audit,,,no,container-doc,section-article
7777
use-log-dump,use-log-dump,use-log-dump,,use-log-dump,,,no,container-doc,section-article
7878
use-permanent-table,use-permanent-table,use-permanent-table,,use-permanent-table,,,no,container-doc,section-article
79+
benchmark,benchmark,benchmark,benchmark,Benchmark,,,no,container-doc,section-article
80+
concurrency,concurrency,concurrency,concurrency,Concurrency,,,no,container-doc,section-article
81+
custom-column,custom-column,custom-column,custom-column,Custom Column,,,no,container-doc,section-article
82+
custom-key,custom-key,custom-key,custom-key,Custom key,,,no,container-doc,section-article
83+
fastest-way-to-insert,fastest-way-to-insert,fastest-way-to-insert,fastest-way-to-insert,Fastest Way to Insert,,,no,container-doc,section-article
84+
improve-bulk-savechanges,improve-bulk-savechanges,improve-bulk-savechanges,improve-bulk-savechanges,Improve BulkSaveChanges,,,no,container-doc,section-article
85+
soft-delete,soft-delete,soft-delete,soft-delete,Soft Delete,,,no,container-doc,section-article

docs/_includes/custom/section-sidebar.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,11 @@ <h3>Articles</h3>
7979
{% elsif page.path contains "/faq/" %}
8080
<nav class="card card-box2 card-box-light2 card-box-nav">
8181
<div class="card-body">
82-
83-
<h3>Getting Help</h3>
84-
<ul>
85-
<li><a href="{{ site.github.url }}/contact-us">Contact Us</a></li>
86-
<li><a href="{{ site.github.url }}/issue-tracker">Issue Tracker</a></li>
87-
</ul>
88-
8982
<h3>FAQ</h3>
9083
<ul>
9184
<li><a href="{{ site.github.url }}/faq-general">General</a></li>
9285
<li><a href="{{ site.github.url }}/faq-installation">Installation</a></li>
86+
<li><a href="{{ site.github.url }}/issue-tracker">Issue Tracker</a></li>
9387
<li><a href="{{ site.github.url }}/faq-license">License</a></li>
9488
</ul>
9589

docs/_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
2121
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
2222
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
23-
<link rel="stylesheet" type="text/css" href="{{ site.github.url }}/css/master.css?v=3">
23+
<link rel="stylesheet" type="text/css" href="{{ site.github.url }}/css/master.css?v=4">
2424
</head>
2525

2626
<body>

docs/_sass/section.scss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@
99

1010
.section-nav .card {
1111
background: transparent;
12+
border: 0;
1213
color: #fff;
1314
}
1415

16+
.section-nav .card .card-body {
17+
padding-left: 0;
18+
padding-right: 0;
19+
}
1520
.section-nav .card a {
1621
color: rgba(255, 255, 255, 0.5);
1722
}
@@ -21,6 +26,8 @@
2126
font-weight: 700;
2227
}
2328

29+
30+
2431
//
2532
// section-aside: TODO
2633
//
@@ -37,7 +44,7 @@
3744
}
3845

3946
.section-main h1 {
40-
font-size: 4rem;
47+
font-size: 3.5rem;
4148
margin-bottom: 30px;
4249
}
4350

docs/pages/problems/dbbulkoperationconcurrency-exception.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ There are three possible resolutions:
2525
- Custom Resolution
2626

2727
#### Database Win
28+
{% include template-example.html %}
2829
{% highlight csharp %}
2930
public void BulkUpdate_DatabaseWins<T>(CurrentContext ctx, List<T> list) where T : class
3031
{
@@ -40,6 +41,7 @@ public void BulkUpdate_DatabaseWins<T>(CurrentContext ctx, List<T> list) where T
4041
{% endhighlight %}
4142

4243
#### Client Win
44+
{% include template-example.html %}
4345
{% highlight csharp %}
4446
public void BulkUpdate_StoreWins<T>(CurrentContext ctx, List<T> list) where T : class
4547
{
@@ -56,6 +58,7 @@ public void BulkUpdate_StoreWins<T>(CurrentContext ctx, List<T> list) where T :
5658
{% endhighlight %}
5759

5860
#### Custom Resolution
61+
{% include template-example.html %}
5962
{% highlight csharp %}
6063
public void BulkUpdate_CustomResolution<T>(CurrentContext ctx, List<T> list) where T : class
6164
{

docs/pages/problems/dbupdateconcurrency-exception.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ There are three possible resolutions:
2525
- Custom Resolution
2626

2727
#### Database Win
28+
{% include template-example.html %}
2829
{% highlight csharp %}
2930
public void BulkSaveChanges_DatabaseWins(DbContext ctx)
3031
{
@@ -51,6 +52,7 @@ public void BulkSaveChanges_DatabaseWins(DbContext ctx)
5152
{% endhighlight %}
5253

5354
#### Client Win
55+
{% include template-example.html %}
5456
{% highlight csharp %}
5557
public void BulkSaveChanges_ClientWins(DbContext ctx)
5658
{
@@ -78,6 +80,7 @@ public void BulkSaveChanges_ClientWins(DbContext ctx)
7880
{% endhighlight %}
7981

8082
#### Custom Resolution
83+
{% include template-example.html %}
8184
{% highlight csharp %}
8285
public void BulkSaveChanges_CustomResolution(CurrentContext ctx)
8386
{

docs/pages/problems/foreign-key-constraint-autodetectchanges-disabled.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ You execute a method from the Entity Framework Extensions library, and the follo
1010

1111
And you use a code similar to this:
1212

13+
{% include template-example.html %}
1314
{% highlight csharp %}
1415
using (var ctx = new MyEntities())
1516
{

docs/pages/site/contact-us.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@ We will do our best to accommodate you.
9393
9494
<h3>Issues & Requests</h3>
9595
<a href="https://github.com/zzzprojects/EntityFramework-Extensions/issues" target="_blank">Issues Tracker</a>
96-
<h3>Community Help</h3>
97-
<a href="https://stackoverflow.com/questions/tagged/entity-framework-extensions" target="_blank">Stack Overflow</a>
9896
</div>
9997
</div>
10098
<br /><br />

0 commit comments

Comments
 (0)