Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.6.0 #55

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions src/core/ssr-template.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,33 @@ const ssrTemplate = (content) => `
<meta name="description" content="명지대학교 졸업사정결과 조회서비스 졸업을 부탁해는
MyiWeb MSI의 성적표만으로 명지대학교 학생들의 졸업을 위해 필요한 미이수 과목 정보 및 잔여학점 조회, 카테고리별 수강학점현황,
강의 커스텀을 통한 졸업사정예측 서비스를 원클릭으로 제공합니다.">
<meta
property="og:image"
content="https://github.com/Myongji-Graduate/MyongjiGraduate-FE/assets/75975946/79eb6efd-9def-4a95-9c75-367a81ea3474"
/>
<meta property="og:title" content="졸업을 부탁해" />
<meta
property="og:description"
content="명지대학교 졸업사정결과 조회서비스 졸업을 부탁해는
MyiWeb MSI의 성적표만으로 명지대학교 학생들의 졸업을 위해 필요한 미이수 과목 정보 및 잔여학점 조회, 카테고리별 수강학점현황,
강의 커스텀을 통한 졸업사정예측 서비스를 원클릭으로 제공합니다."
/>
<meta
property="twitter:image"
content="https://github.com/Myongji-Graduate/MyongjiGraduate-FE/assets/75975946/79eb6efd-9def-4a95-9c75-367a81ea3474"
/>
<meta property="twitter:title" content="졸업을 부탁해" />
<meta
property="twitter:description"
content="명지대학교 졸업사정결과 조회서비스 졸업을 부탁해는
MyiWeb MSI의 성적표만으로 명지대학교 학생들의 졸업을 위해 필요한 미이수 과목 정보 및 잔여학점 조회, 카테고리별 수강학점현황,
강의 커스텀을 통한 졸업사정예측 서비스를 원클릭으로 제공합니다."
/>
<link rel="icon" href="https://github.com/Myongji-Graduate/MyongjiGraduate-BE/assets/75975946/2a7354ae-dffe-4250-8b83-a211a07ff5d2" />
<title>MJU graduate</title>
<link rel="shortcut icon" href="#">
</head>
<body>
<div class="app-container">${content}</div>

<!-- csr을 위한 script 태그 추가 -->
<script defer="defer" src="${BUILD_FILE}"></script>
<!-- / csr을 위한 script 태그 추가 -->
Expand Down
Loading