Skip to content

Instantly share code, notes, and snippets.

View ecojuntak's full-sized avatar
🌏

Eko Simanjuntak ecojuntak

🌏
View GitHub Profile
@extends('layouts.app')
@section('title')
Book List
@endsection
@section('content')
<div style="margin-top: 20px; margin-bottom: 20px">
<table border="1">
<a href="/books/add"> Add new book</a>
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: go-web-server
labels:
app: go-web-server
spec:
replicas: 3
selector:
matchLabels:
apiVersion: v1
kind: Pod
metadata:
name: go-web-server
spec:
containers:
- name: app
image: ecojuntak/go-web-server:v0.1
@extends('layouts.app')
@section('title')
Book List
@endsection
@section('content')
<div style="margin-top: 20px; margin-bottom: 20px">
<table border="1">
<a href="/books/add"> Add new book</a>
<div style="background: #388BF2; font-size: 24px; color: white">
Simple library app
</div>
<html>
<head>
<title>@yield('title')</title>
</head>
<body>
@include('layouts/header')
<div style="margin-top: 20px; margin-bottom: 20px">
@yield('content')
<html>
<head>
<title> # Title Here </title>
</head>
<body>
<div style="background: #388BF2; font-size: 24px; color: white">
# Header here
</div>
<html>
<head>
<title>Edit book</title>
</head>
<body>
<div style="background: #388BF2; font-size: 24px; color: white">
Simple library app
</div>
<html>
<head>
<title>Add book</title>
</head>
<body>
<div style="background: #388BF2; font-size: 24px; color: white">
Simple library app
</div>