A Pen by Michael Garten on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="ui segments" id="app"> | |
<div id="app-header" class="ui segment layout"> | |
<i>AppHeader</i> | |
</div> | |
<div id="app-content" class="ui segment layout"> | |
<i>AppContent</i> | |
<div id="nuxt" class="ui segment page"> | |
<i>VueStudio | VueFinder | Resources | Showcase</i> | |
<div class="ui horizontal segments" id="components"> | |
<div class="ui segment"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"> | |
<v-app> | |
<v-layout fill-height> | |
<v-navigation-drawer | |
dark | |
mini-variant | |
stateless | |
value="true" | |
app | |
> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app" class="editor-shell"> | |
<div id="html-editor" class="panel"> | |
<div class="panel-header">Code Editor</div> | |
<textarea class="panel-content" id="editor"> | |
<button class="btn btn-lg btn-success">Demo Button</button> | |
</textarea> | |
</div> | |
<div id="html-preview" class="panel"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="editor" class="editor-shell md-editor"> | |
<div id="html-editor" class="panel"> | |
<div class="panel-header">Markdown Editor</div> | |
<textarea | |
id="md-input" | |
class="panel-content" | |
:value="input" | |
@input="update"> | |
</textarea> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Authorize] | |
[Route("api/[controller]")] | |
public abstract class ApiController<T> : Controller where T : class, IEntity | |
{ | |
private IApplicationRepository<T> _repository; | |
public ApiController(IApplicationRepository<T> repository) | |
{ | |
_repository = repository; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang="en"> | |
<head> | |
<!-- Required meta tags always come first --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
</head> | |
<body> | |
<div class="container-fluid" id="app"> |